Mercurial > hg > orthanc
changeset 2520:b94ed97508e6
fix
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 29 Mar 2018 16:14:10 +0200 |
parents | 2e6b7862ccf2 |
children | 6db878376018 |
files | Core/DicomParsing/DicomModification.cpp |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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(); } }