diff OrthancServer/DicomProtocol/DicomServer.cpp @ 137:0e97abc7b950

fix of a bug in older versions of sqlite
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 10 Oct 2012 13:13:14 +0200
parents fe180eae201d
children 4d7469f72a0b
line wrap: on
line diff
--- a/OrthancServer/DicomProtocol/DicomServer.cpp	Tue Oct 09 18:21:01 2012 +0200
+++ b/OrthancServer/DicomProtocol/DicomServer.cpp	Wed Oct 10 13:13:14 2012 +0200
@@ -59,7 +59,7 @@
     /* make sure data dictionary is loaded */
     if (!dcmDataDict.isDictionaryLoaded())
     {
-      LOG(WARNING) << "no data dictionary loaded, check environment variable: " << DCM_DICT_ENVIRONMENT_VARIABLE;
+      LOG(ERROR) << "no data dictionary loaded, check environment variable: " << DCM_DICT_ENVIRONMENT_VARIABLE;
     }
 
     /* initialize network, i.e. create an instance of T_ASC_Network*. */
@@ -72,7 +72,7 @@
       throw OrthancException("Cannot create network");
     }
 
-    LOG(WARNING) << "DICOM server started";
+    LOG(INFO) << "DICOM server started";
 
     server->started_ = true;
 
@@ -95,7 +95,7 @@
       }
     }
 
-    LOG(WARNING) << "DICOM server stopping";
+    LOG(INFO) << "DICOM server stopping";
 
     /* drop the network, i.e. free memory of T_ASC_Network* structure. This call */
     /* is the counterpart of ASC_initializeNetwork(...) which was called above. */