comparison OrthancServer/Sources/OrthancInitialization.cpp @ 5793:a8055aebc6cb find-refactoring

added standard MainDicomTags that are used in QIDO-RS
author Alain Mazy <am@orthanc.team>
date Wed, 18 Sep 2024 12:30:49 +0200
parents f7adfb22e20e
children 023a99146dd0
comparison
equal deleted inserted replaced
5792:89a13d8ec80b 5793:a8055aebc6cb
259 } 259 }
260 else 260 else
261 { 261 {
262 LOG(INFO) << " - " << tagName; 262 LOG(INFO) << " - " << tagName;
263 } 263 }
264 DicomMap::AddMainDicomTag(tag, level); 264
265 try
266 {
267 DicomMap::AddMainDicomTag(tag, level);
268 }
269 catch(OrthancException& e)
270 {
271 LOG(WARNING) << " - !!! " << tagName << " is already defined as a standard MainDicomTags, it is useless to include it in the ExtraMainDicomTags";
272 }
273
274
265 } 275 }
266 } 276 }
267 } 277 }
268 } 278 }
269 } 279 }