# HG changeset patch # User Sebastien Jodogne # Date 1522332850 -7200 # Node ID b94ed97508e6e5dca850c90b6793aeb1198179e1 # Parent 2e6b7862ccf2faa68893dd28c2405a159be1d3cf fix diff -r 2e6b7862ccf2 -r b94ed97508e6 Core/DicomParsing/DicomModification.cpp --- a/Core/DicomParsing/DicomModification.cpp Thu Mar 29 14:52:11 2018 +0200 +++ b/Core/DicomParsing/DicomModification.cpp Thu Mar 29 16:14:10 2018 +0200 @@ -1043,12 +1043,12 @@ { case DicomModification::TagOperation_Keep: target.Keep(tag); - VLOG(1) << "Keep: " << name << " " << tag << std::endl; + VLOG(1) << "Keep: " << name << " " << tag; break; case DicomModification::TagOperation_Remove: target.Remove(tag); - VLOG(1) << "Remove: " << name << " " << tag << std::endl; + VLOG(1) << "Remove: " << name << " " << tag; break; default: @@ -1085,7 +1085,7 @@ target.Replace(tag, value, false); VLOG(1) << "Replace: " << name << " " << tag - << " == " << value.toStyledString() << std::endl; + << " == " << value.toStyledString(); } }