summaryrefslogtreecommitdiff
path: root/includes/Printer.h
diff options
context:
space:
mode:
authorNicolas "Pixel" Noble <pixel@nobis-crew.org>2012-08-29 23:19:09 -0700
committerNicolas "Pixel" Noble <pixel@nobis-crew.org>2012-08-29 23:48:58 -0700
commit38833205e4011a8a318b8dc6809621a89ad9f446 (patch)
treeeb1c8c8a4b9b6a9718b87df5cf13832ba0fecf68 /includes/Printer.h
parent3f1b0920d697afff0f3e938cb7eca0aacfd75a91 (diff)
Using true C++11 initializers in classes.
Diffstat (limited to 'includes/Printer.h')
-rw-r--r--includes/Printer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/Printer.h b/includes/Printer.h
index b4001f1..e215fc1 100644
--- a/includes/Printer.h
+++ b/includes/Printer.h
@@ -74,8 +74,8 @@ class Printer {
static void setDetailled(bool enable) { getPrinter()->m_detailledLogs = enable; }
private:
- uint32_t m_verbosity;
- bool m_detailledLogs;
+ uint32_t m_verbosity = M_STATUS | M_WARNING | M_ERROR | M_ENGINE_DEBUG;
+ bool m_detailledLogs = false;
};
};