comparison OrthancServer/Sources/OrthancMoveRequestHandler.cpp @ 4375:208029732d51 varian

New config option "DeidentifyDimseQueryLogs"
author Mark Poscablo <Mark.Poscablo@varian.com>
date Tue, 15 Dec 2020 13:59:01 -0500
parents 91554aecff9a
children b002f9abe802
comparison
equal deleted inserted replaced
4374:79ef2b6d8e76 4375:208029732d51
342 { 342 {
343 if (!query.GetElement(i).GetValue().IsNull()) 343 if (!query.GetElement(i).GetValue().IsNull())
344 { 344 {
345 CLOG(INFO, DICOM) << " (" << query.GetElement(i).GetTag().Format() 345 CLOG(INFO, DICOM) << " (" << query.GetElement(i).GetTag().Format()
346 << ") " << FromDcmtkBridge::GetTagName(query.GetElement(i)) 346 << ") " << FromDcmtkBridge::GetTagName(query.GetElement(i))
347 << " = " << query.GetElement(i).GetValue().GetContent(); 347 << " = " << context_.GetDeidentifiedQueryContent(query.GetElement(i));
348 } 348 }
349 } 349 }
350 } 350 }
351 351
352 /** 352 /**