comparison Core/Logging.cpp @ 1487:23083810d543

removal of unneeded static libraries
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 04 Aug 2015 10:45:58 +0200
parents 27661b33f624
children c8763b603b0e
comparison
equal deleted inserted replaced
1486:f967bdf8534e 1487:23083810d543
36 36
37 namespace Orthanc 37 namespace Orthanc
38 { 38 {
39 namespace Logging 39 namespace Logging
40 { 40 {
41 #if ORTHANC_ENABLE_GOOGLE_LOG == 1
41 void Initialize() 42 void Initialize()
42 { 43 {
43 // Initialize Google's logging library. 44 // Initialize Google's logging library.
44 FLAGS_logtostderr = true; 45 FLAGS_logtostderr = true;
45 FLAGS_minloglevel = 1; // Do not print LOG(INFO) by default 46 FLAGS_minloglevel = 1; // Do not print LOG(INFO) by default
68 else 69 else
69 { 70 {
70 FLAGS_v = 0; 71 FLAGS_v = 0;
71 } 72 }
72 } 73 }
74 #endif
73 } 75 }
74 } 76 }