This question is regarding logging in C++ with Pantheios library. In my application, I need to have these different loggers:
- One that logs the critical messages to logFile1 and to Console
- One that logs the warning messages to logFile2
One that logs the error messages to WindowsEventLog
I'm wondering if I can do it in panthios.
I guess my question is: How can I have different settings (like severity levels, different filenames) for different log entries.
Also, do we have any logging hierarchies here in Pantheios that I can use for my different subsystems?
Can I change these configurations at runtime?
Thanks, Reza