comparison OrthancServer/Sources/OrthancGetRequestHandler.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
505 { 505 {
506 if (!query.GetElement(i).GetValue().IsNull()) 506 if (!query.GetElement(i).GetValue().IsNull())
507 { 507 {
508 CLOG(INFO, DICOM) << " (" << query.GetElement(i).GetTag().Format() 508 CLOG(INFO, DICOM) << " (" << query.GetElement(i).GetTag().Format()
509 << ") " << FromDcmtkBridge::GetTagName(query.GetElement(i)) 509 << ") " << FromDcmtkBridge::GetTagName(query.GetElement(i))
510 << " = " << query.GetElement(i).GetValue().GetContent(); 510 << " = " << context_.GetDeidentifiedQueryContent(query.GetElement(i));
511 } 511 }
512 } 512 }
513 } 513 }
514 514
515 /** 515 /**