diff OrthancFramework/Sources/DicomParsing/DicomModification.cpp @ 4313:91554aecff9a

removed a friend method for better abi
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 09 Nov 2020 16:09:05 +0100
parents 785a2713323e
children d9473bd5ed43
line wrap: on
line diff
--- a/OrthancFramework/Sources/DicomParsing/DicomModification.cpp	Mon Nov 09 15:22:43 2020 +0100
+++ b/OrthancFramework/Sources/DicomParsing/DicomModification.cpp	Mon Nov 09 16:09:05 2020 +0100
@@ -1186,12 +1186,12 @@
       {
         case DicomModification::TagOperation_Keep:
           target.Keep(tag);
-          LOG(TRACE) << "Keep: " << name << " " << tag;
+          LOG(TRACE) << "Keep: " << name << " (" << tag.Format() << ")";
           break;
 
         case DicomModification::TagOperation_Remove:
           target.Remove(tag);
-          LOG(TRACE) << "Remove: " << name << " " << tag;
+          LOG(TRACE) << "Remove: " << name << " (" << tag.Format() << ")";
           break;
 
         default:
@@ -1227,8 +1227,8 @@
 
       target.Replace(tag, value, false);
 
-      LOG(TRACE) << "Replace: " << name << " " << tag 
-                 << " == " << value.toStyledString();
+      LOG(TRACE) << "Replace: " << name << " (" << tag.Format() 
+                 << ") == " << value.toStyledString();
     }
   }