Commit 0f9defc9 authored by Dominik Charousset's avatar Dominik Charousset

Fix build with logging disabled

parent 526e0097
......@@ -236,7 +236,11 @@ logger::~logger() {
logger::logger(actor_system& sys)
: system_(sys),
#ifdef CAF_LOG_LEVEL
level_(CAF_LOG_LEVEL),
#else
level_(0),
#endif
flags_(0),
queue_(policy{}) {
// nop
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment