summaryrefslogtreecommitdiffstats
path: root/common/log.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/log.h')
-rw-r--r--common/log.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/log.h b/common/log.h
index e06ac5a..ee92f46 100644
--- a/common/log.h
+++ b/common/log.h
@@ -9,7 +9,7 @@ enum DebugLevel {
9 Error 9 Error
10}; 10};
11 11
12QDebug debugStream(DebugLevel debugLevel, int line, const char* file, const char* function); 12QDebug debugStream(DebugLevel debugLevel, int line, const char* file, const char* function, const char* debugArea = 0);
13 13
14#define Trace() debugStream(DebugLevel::Trace, __LINE__, __FILE__, Q_FUNC_INFO) 14#define Trace() debugStream(DebugLevel::Trace, __LINE__, __FILE__, Q_FUNC_INFO)
15#define Log() debugStream(DebugLevel::Log, __LINE__, __FILE__, Q_FUNC_INFO) 15#define Log() debugStream(DebugLevel::Log, __LINE__, __FILE__, Q_FUNC_INFO)