comparison OrthancServer/Sources/OrthancInitialization.cpp @ 5809:023a99146dd0 attach-custom-data

merged find-refactoring -> attach-custom-data
author Alain Mazy <am@orthanc.team>
date Tue, 24 Sep 2024 12:53:43 +0200
parents 8279eaab0d1d a8055aebc6cb
children
comparison
equal deleted inserted replaced
5808:63c025cf6958 5809:023a99146dd0
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 }