comparison Core/DicomParsing/FromDcmtkBridge.cpp @ 2528:832217e4e872

old warnings turned into info
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 13 Apr 2018 13:11:25 +0200
parents ce2dfba9417c
children ea63d9f90377
comparison
equal deleted inserted replaced
2527:a6c2d8a2a2ec 2528:832217e4e872
209 DictionaryLocker locker; 209 DictionaryLocker locker;
210 210
211 locker->clear(); 211 locker->clear();
212 212
213 #if DCMTK_USE_EMBEDDED_DICTIONARIES == 1 213 #if DCMTK_USE_EMBEDDED_DICTIONARIES == 1
214 LOG(WARNING) << "Loading the embedded dictionaries"; 214 LOG(INFO) << "Loading the embedded dictionaries";
215 /** 215 /**
216 * Do not load DICONDE dictionary, it breaks the other tags. The 216 * Do not load DICONDE dictionary, it breaks the other tags. The
217 * command "strace storescu 2>&1 |grep dic" shows that DICONDE 217 * command "strace storescu 2>&1 |grep dic" shows that DICONDE
218 * dictionary is not loaded by storescu. 218 * dictionary is not loaded by storescu.
219 **/ 219 **/
2086 2086
2087 2087
2088 void FromDcmtkBridge::InitializeCodecs() 2088 void FromDcmtkBridge::InitializeCodecs()
2089 { 2089 {
2090 #if ORTHANC_ENABLE_DCMTK_JPEG_LOSSLESS == 1 2090 #if ORTHANC_ENABLE_DCMTK_JPEG_LOSSLESS == 1
2091 LOG(WARNING) << "Registering JPEG Lossless codecs in DCMTK"; 2091 LOG(INFO) << "Registering JPEG Lossless codecs in DCMTK";
2092 DJLSDecoderRegistration::registerCodecs(); 2092 DJLSDecoderRegistration::registerCodecs();
2093 #endif 2093 #endif
2094 2094
2095 #if ORTHANC_ENABLE_DCMTK_JPEG == 1 2095 #if ORTHANC_ENABLE_DCMTK_JPEG == 1
2096 LOG(WARNING) << "Registering JPEG codecs in DCMTK"; 2096 LOG(INFO) << "Registering JPEG codecs in DCMTK";
2097 DJDecoderRegistration::registerCodecs(); 2097 DJDecoderRegistration::registerCodecs();
2098 #endif 2098 #endif
2099 } 2099 }
2100 2100
2101 2101