0

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

1 Answers1

0

you can probably achieve this by creating a log handler for each file, then attaching a filter to each handler

scytale
  • 12,346
  • 3
  • 32
  • 46