From: jpr Date: Thu, 27 Oct 2005 09:52:33 +0000 (+0000) Subject: Messages X-Git-Tag: OpenJPEG.Version1.2~123 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=dc7688310e404af94a4c60e336345b8e40c3cd42;p=gdcm.git Messages --- diff --git a/src/gdcmFile.cxx b/src/gdcmFile.cxx index e65e2efa..ef481450 100644 --- a/src/gdcmFile.cxx +++ b/src/gdcmFile.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmFile.cxx,v $ Language: C++ - Date: $Date: 2005/10/26 06:23:37 $ - Version: $Revision: 1.297 $ + Date: $Date: 2005/10/27 09:52:33 $ + Version: $Revision: 1.298 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -863,7 +863,6 @@ int File::GetPlanarConfiguration() DataEntry *entry = GetDataEntry(0x0028,0x0006); if( !entry ) { - gdcmWarningMacro( "Not found : Planar Configuration (0028,0006)"); return 0; } return (int)entry->GetValue(0); diff --git a/src/gdcmSQItem.cxx b/src/gdcmSQItem.cxx index 7c8d61c6..1dff9cd8 100644 --- a/src/gdcmSQItem.cxx +++ b/src/gdcmSQItem.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmSQItem.cxx,v $ Language: C++ - Date: $Date: 2005/10/24 16:00:48 $ - Version: $Revision: 1.77 $ + Date: $Date: 2005/10/27 09:52:33 $ + Version: $Revision: 1.78 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -154,7 +154,7 @@ bool SQItem::RemoveEntry( DocEntry *entryToRemove ) if ( *it == entryToRemove ) { DocEntries.erase(it); - gdcmWarningMacro( "One element erased: " << entryToRemove->GetKey() ); + gdcmDebugMacro( "One element erased: " << entryToRemove->GetKey() ); entryToRemove->Unregister(); return true; }