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, 2 insertions, 0 deletions
diff --git a/common/log.h b/common/log.h
index 92d6cdd..7d02634 100644
--- a/common/log.h
+++ b/common/log.h
@@ -38,6 +38,7 @@ enum FilterType {
38 * Note: In case of resources the application name is the identifier. 38 * Note: In case of resources the application name is the identifier.
39 */ 39 */
40void SINKCOMMON_EXPORT setDebugOutputFilter(FilterType, const QByteArrayList &filter); 40void SINKCOMMON_EXPORT setDebugOutputFilter(FilterType, const QByteArrayList &filter);
41QByteArrayList SINKCOMMON_EXPORT debugOutputFilter(FilterType type);
41 42
42/** 43/**
43 * Set the debug output fields. 44 * Set the debug output fields.
@@ -50,6 +51,7 @@ void SINKCOMMON_EXPORT setDebugOutputFilter(FilterType, const QByteArrayList &fi
50 * These are additional items to the default ones (level, area, message). 51 * These are additional items to the default ones (level, area, message).
51 */ 52 */
52void SINKCOMMON_EXPORT setDebugOutputFields(const QByteArrayList &filter); 53void SINKCOMMON_EXPORT setDebugOutputFields(const QByteArrayList &filter);
54QByteArrayList SINKCOMMON_EXPORT debugOutputFields();
53 55
54QDebug SINKCOMMON_EXPORT debugStream(DebugLevel debugLevel, int line, const char* file, const char* function, const char* debugArea = 0); 56QDebug SINKCOMMON_EXPORT debugStream(DebugLevel debugLevel, int line, const char* file, const char* function, const char* debugArea = 0);
55 57