summaryrefslogtreecommitdiffstats
path: root/common/log.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/log.h')
-rw-r--r--common/log.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/common/log.h b/common/log.h
index 9db9e8e..e531348 100644
--- a/common/log.h
+++ b/common/log.h
@@ -12,7 +12,11 @@ enum DebugLevel {
12 Error 12 Error
13}; 13};
14 14
15QByteArray debugLevelName(DebugLevel debugLevel);
16DebugLevel debugLevelFromName(const QByteArray &name);
17
15void setDebugOutputLevel(DebugLevel); 18void setDebugOutputLevel(DebugLevel);
19DebugLevel debugOutputLevel();
16 20
17QDebug debugStream(DebugLevel debugLevel, int line, const char* file, const char* function, const char* debugArea = 0); 21QDebug debugStream(DebugLevel debugLevel, int line, const char* file, const char* function, const char* debugArea = 0);
18 22