log4cplus is powerful, but I don't know how to retrieve log entries with it? Are there any features? Any APIs or things like that provided by log4cplus? Thanks in advance.
feedback
|
|
Well, I'm not sure what you want exactly. The log4cplus documentation give you examples to use it. For example :
This way you will get a log on the console. If you want to configure log4cplus to log things in a file you can use a file like :
And in your C++ program :
To log something use the macros provided :
See log4cplus examples to start. Tell me if you need more info. my 2 cents EDIT: Well logs are stored depending on your appender. You can have a standard file (FileAppender), or a set of files (RollingFileAppender), etc. This way you see old logs by looking in your files. You can also use system logs, or write your own appender Programmatically, one way it to use a DailyRollingFileAppender. Then you can open the file corresponding to a specific date and get your logs by reading the file content. Another way is to write a log4cplus DBMS appender and use an SQL lib to read them. I know of no standard API to get back log in log4cplus. | |||||||||||
feedback
|
|
Yes, there's a way to do that but not out-of-the-box. Implement the abstract class Appender and do whatever you need there just by implement the append virtual function, also provide an interface for your required functionality:
in your cliente code:
| |||
|
feedback
|