comparison OrthancServer/Sources/ServerContext.cpp @ 5334:5b2a5cc64cb1

upgraded anonymization to Basic Profile of PS 3.15-2023b Table E.1-1
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 27 Jun 2023 15:12:39 +0200
parents 816968b5a031
children b376abae664a
comparison
equal deleted inserted replaced
5333:816968b5a031 5334:5b2a5cc64cb1
404 { 404 {
405 deidentifyLogs_ = true; 405 deidentifyLogs_ = true;
406 CLOG(INFO, DICOM) << "Deidentification of log contents (notably for DIMSE queries) is enabled"; 406 CLOG(INFO, DICOM) << "Deidentification of log contents (notably for DIMSE queries) is enabled";
407 407
408 DicomVersion version = StringToDicomVersion( 408 DicomVersion version = StringToDicomVersion(
409 lock.GetConfiguration().GetStringParameter("DeidentifyLogsDicomVersion", "2021b")); 409 lock.GetConfiguration().GetStringParameter("DeidentifyLogsDicomVersion", "2023b"));
410 CLOG(INFO, DICOM) << "Version of DICOM standard used for deidentification is " 410 CLOG(INFO, DICOM) << "Version of DICOM standard used for deidentification is "
411 << EnumerationToString(version); 411 << EnumerationToString(version);
412 412
413 logsDeidentifierRules_.SetupAnonymization(version); 413 logsDeidentifierRules_.SetupAnonymization(version);
414 } 414 }