Changeset 511 for cpp/common/loggers/loggers.h
- Timestamp:
- 05/23/16 13:48:45 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/common/loggers/loggers.h
r452 r511 71 71 } 72 72 73 virtual void handle(const char *obj, const char *method, int level, const char *msg) {} 73 virtual void handle(const char *obj, const char *method, int level, const char *msg); ///< implemented by loggers accepting multiline messages. if not implemented, the default handle() splits multiline text into single lines and calls handleSingleLine() 74 virtual void handleSingleLine(const char *obj, const char *method, int level, const char *msg) {} ///< implemented by loggers expecting single line messages 74 75 }; 75 76
Note: See TracChangeset
for help on using the changeset viewer.