X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmSerieHelper.cxx;h=f0dcdca3366dad1813b5ed90a56903ad257ceb7a;hb=b330c6f291515e40582b3aa1258d1a27b628aac3;hp=f9fd686322cf17cdca35266b186bb823425662b7;hpb=eda9bfda6d03f728b261824ca3b04f596485e288;p=gdcm.git diff --git a/src/gdcmSerieHelper.cxx b/src/gdcmSerieHelper.cxx index f9fd6863..f0dcdca3 100644 --- a/src/gdcmSerieHelper.cxx +++ b/src/gdcmSerieHelper.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmSerieHelper.cxx,v $ Language: C++ - Date: $Date: 2005/02/05 01:25:03 $ - Version: $Revision: 1.3 $ + Date: $Date: 2005/02/05 01:37:09 $ + Version: $Revision: 1.4 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -96,7 +96,7 @@ void SerieHelper::AddFileName(std::string const &filename) if ( CoherentGdcmFileListHT.count(uid) == 0 ) { - gdcmVerboseMacro(" New Serie UID :[" << uid << "]"); + gdcmWarningMacro(" New Serie UID :[" << uid << "]"); // create a std::list in 'uid' position CoherentGdcmFileListHT[uid] = new GdcmFileList; } @@ -105,7 +105,7 @@ void SerieHelper::AddFileName(std::string const &filename) } else { - gdcmVerboseMacro("Could not read file: " << filename ); + gdcmWarningMacro("Could not read file: " << filename ); delete header; } } @@ -305,7 +305,7 @@ bool SerieHelper::ImagePositionPatientOrdering( GdcmFileList *fileList ) CoherentGdcmFileVector[pos] = *it2; else { - gdcmVerboseMacro( "2 files same position"); + gdcmWarningMacro( "2 files same position"); return false; } } @@ -389,7 +389,7 @@ void SerieHelper::Print(std::ostream &os, std::string const & indent) CoherentFileListmap::iterator itl = CoherentGdcmFileListHT.begin(); if ( itl == CoherentGdcmFileListHT.end() ) { - gdcmVerboseMacro( "No Coherent File list found" ); + gdcmWarningMacro( "No Coherent File list found" ); return; } while (itl != CoherentGdcmFileListHT.end())