#include <sstream>
#include <dbus-cxx/simplelogger_defs.h>
Go to the source code of this file.
◆ DBUSCXX_DEBUG_STDSTR
#define DBUSCXX_DEBUG_STDSTR |
( |
|
logger, |
|
|
|
message |
|
) |
| |
Value: do{\
std::stringstream stream;\
stream << message;\
DBUSCXX_LOG_CSTR_HEADER( logger, stream.str().c_str(),
SL_DEBUG);\
} while(0)
@ SL_DEBUG
Definition: simplelogger_defs.h:28
◆ DBUSCXX_LOG_CSTR_HEADER
#define DBUSCXX_LOG_CSTR_HEADER |
( |
|
logger, |
|
|
|
message, |
|
|
|
level |
|
) |
| |
Value: do{\
location.file = __FILE__;\
location.function = __func__;\
dbuscxx_log_function( logger, &location, level, message );\
} while(0)
Where the log message was generated from.
Definition: simplelogger_defs.h:17
int line_number
Definition: simplelogger_defs.h:18
◆ dbuscxx_log_function