diff options
author | Vadim Troshchinskiy <vtroshchinskiy@qindel.com> | 2016-12-22 12:40:43 +0100 |
---|---|---|
committer | Mihai Moldovan <ionic@ionic.de> | 2017-10-27 08:45:42 +0200 |
commit | d960ec2cb0a6f9e0d35cd034d27a5fdd88a4307e (patch) | |
tree | 87ce65d69ef8e5faa229ea8fa92c1ae065ccd70e /nxcomp/src | |
parent | b0521e8165389515b6f8290a652d7db241f84af8 (diff) | |
download | nx-libs-d960ec2cb0a6f9e0d35cd034d27a5fdd88a4307e.tar.gz nx-libs-d960ec2cb0a6f9e0d35cd034d27a5fdd88a4307e.tar.bz2 nx-libs-d960ec2cb0a6f9e0d35cd034d27a5fdd88a4307e.zip |
Set default log level to WARNING
This is to ensure the log output is the same as previous releases,
which didn't have INFO defined by default.
Diffstat (limited to 'nxcomp/src')
-rw-r--r-- | nxcomp/src/Log.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nxcomp/src/Log.h b/nxcomp/src/Log.h index f4ee66e1f..c3ddd9568 100644 --- a/nxcomp/src/Log.h +++ b/nxcomp/src/Log.h @@ -223,7 +223,7 @@ class NXLog NXLog() { stream_ = &std::cerr; - level_ = NXDEBUG; + level_ = NXWARNING; synchronized_ = true; thread_buffer_size_ = 1024; log_level_ = false; |