comparison Core/Logging.h @ 1488:c8763b603b0e

flag for plugins
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 04 Aug 2015 10:54:13 +0200
parents 23083810d543
children 1389834e130f
comparison
equal deleted inserted replaced
1487:23083810d543 1488:c8763b603b0e
30 **/ 30 **/
31 31
32 32
33 #pragma once 33 #pragma once
34 34
35 #if ORTHANC_ENABLE_LOGGING == 1
36
35 #if ORTHANC_ENABLE_GOOGLE_LOG == 1 37 #if ORTHANC_ENABLE_GOOGLE_LOG == 1
36 #include <stdlib.h> // This fixes a problem in glog for recent releases of MinGW 38 #include <stdlib.h> // This fixes a problem in glog for recent releases of MinGW
37 #include <glog/logging.h> 39 #include <glog/logging.h>
38 #endif 40 #endif
39 41
48 void EnableInfoLevel(bool enabled); 50 void EnableInfoLevel(bool enabled);
49 51
50 void EnableTraceLevel(bool enabled); 52 void EnableTraceLevel(bool enabled);
51 } 53 }
52 } 54 }
55
56 #endif