logTrace

! Logs an event with severity HTS_LOG_TRACE and default context. Parameters: format, ...

void
logTrace
(
const(char)[] ctx
,
string msg
)

Examples

setLogLevel(LogLevel.LOG_TRACE);

logTrace(__FUNCTION__, "Test: trace");
logDebug(__FUNCTION__, "Test: debug");
logInfo(__FUNCTION__,  "Test: info");
logWarning(__FUNCTION__,"Test: warning");
logError(__FUNCTION__, "Test: error");

Meta