comparison OrthancServer/Sources/ServerContext.cpp @ 4677:521e39b3f2c0

Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 03 Jun 2021 21:06:34 +0200
parents 3294385a245a
children da1edb7d6332
comparison
equal deleted inserted replaced
4676:caf963ee3de9 4677:521e39b3f2c0
378 { 378 {
379 deidentifyLogs_ = true; 379 deidentifyLogs_ = true;
380 CLOG(INFO, DICOM) << "Deidentification of log contents (notably for DIMSE queries) is enabled"; 380 CLOG(INFO, DICOM) << "Deidentification of log contents (notably for DIMSE queries) is enabled";
381 381
382 DicomVersion version = StringToDicomVersion( 382 DicomVersion version = StringToDicomVersion(
383 lock.GetConfiguration().GetStringParameter("DeidentifyLogsDicomVersion", "2017c")); 383 lock.GetConfiguration().GetStringParameter("DeidentifyLogsDicomVersion", "2021b"));
384 CLOG(INFO, DICOM) << "Version of DICOM standard used for deidentification is " 384 CLOG(INFO, DICOM) << "Version of DICOM standard used for deidentification is "
385 << EnumerationToString(version); 385 << EnumerationToString(version);
386 386
387 logsDeidentifierRules_.SetupAnonymization(version); 387 logsDeidentifierRules_.SetupAnonymization(version);
388 } 388 }