0
How to direct logs to multiple log files (destinations) – log4cpp
Posted by Joys of Programming on in C/C++
log4cpp can not only be used to log the events to a log file or standard output, but also helps you to log events to multiple destinations. For this purpose, either you can add multiple appenders to a single category or make use of multiple Categories. We will explore the first options. With this option, [...]