# HG changeset patch # User Alain Mazy # Date 1740732196 -3600 # Node ID 0fb9706524bbb855b93e04b4b7bc28927fd7ec23 # Parent 7ed3211a6522b30b94461718c3f0e97e81c10905 todo + doc DICOM deidentified logs diff -r 7ed3211a6522 -r 0fb9706524bb OrthancServer/Resources/Configuration.json --- a/OrthancServer/Resources/Configuration.json Wed Feb 26 13:46:56 2025 +0100 +++ b/OrthancServer/Resources/Configuration.json Fri Feb 28 09:43:16 2025 +0100 @@ -947,7 +947,8 @@ // Deidentify/anonymize the contents of the logs (notably C-FIND, // C-GET, and C-MOVE queries submitted to Orthanc) according to - // Table E.1-1 of the DICOM standard (new in Orthanc 1.8.2) + // Table E.1-1 of the DICOM standard (new in Orthanc 1.8.2). + // Note that, the DICOM logs at TRACE level are not deidentified ! "DeidentifyLogs" : true, // If "DeidentifyLogs" is true, this sets the DICOM standard to diff -r 7ed3211a6522 -r 0fb9706524bb TODO --- a/TODO Wed Feb 26 13:46:56 2025 +0100 +++ b/TODO Fri Feb 28 09:43:16 2025 +0100 @@ -206,6 +206,9 @@ * Log outgoing C-Find queries * Support other Transfer Syntaxes in the Worklist plugin: https://discourse.orthanc-server.org/t/could-you-please-create-an-option-to-set-the-transfer-syntax-in-the-worklist-plugin-currently-little-endian-explicit-is-fixed/4871 +* Deidentify Trace level logs: https://discourse.orthanc-server.org/t/dicom-log-deidentification-at-trace-log-level/5563 + We should implement something like GetDeidentifiedContent(const DcmDataSet& dataset) that would + reproduce DcmDataSet::print but hide individual elements that contain PHI. ---------