I need to map the different logging level messages to different files, it is like mapping all info log messages to info.log and all debug messages to debug.log, is that possible in python if yes, how can it be done.
Thanks in Adavance
I need to map the different logging level messages to different files, it is like mapping all info log messages to info.log and all debug messages to debug.log, is that possible in python if yes, how can it be done.
Thanks in Adavance
you can probably achieve this by creating a log handler for each file, then attaching a filter to each handler