diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-01-11 11:44:04 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-01-11 11:44:04 +0100 |
commit | d2d87b5d0d57aaeb46d2058a28749c2463a86a77 (patch) | |
tree | 828ad131eea140407843f6ad7f207823de62e1b7 /common/log.h | |
parent | b1a66bc9b66213d1d4852553e7180dcc76fb6bf7 (diff) | |
parent | b59a7fe545aa2732e98ecc373c4ab5ca741cd920 (diff) | |
download | sink-d2d87b5d0d57aaeb46d2058a28749c2463a86a77.tar.gz sink-d2d87b5d0d57aaeb46d2058a28749c2463a86a77.zip |
Merge branch 'feature/akonadish_log_control' into develop
Diffstat (limited to 'common/log.h')
-rw-r--r-- | common/log.h | 4 |
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 | ||
15 | QByteArray debugLevelName(DebugLevel debugLevel); | ||
16 | DebugLevel debugLevelFromName(const QByteArray &name); | ||
17 | |||
15 | void setDebugOutputLevel(DebugLevel); | 18 | void setDebugOutputLevel(DebugLevel); |
19 | DebugLevel debugOutputLevel(); | ||
16 | 20 | ||
17 | QDebug debugStream(DebugLevel debugLevel, int line, const char* file, const char* function, const char* debugArea = 0); | 21 | QDebug debugStream(DebugLevel debugLevel, int line, const char* file, const char* function, const char* debugArea = 0); |
18 | 22 | ||