X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDebug.cxx;h=31afc8e785eed1022428a0137242178cc17013fd;hb=359ebc818c100156bd8f7a3a8783f2c538474990;hp=a742c86b8bb56676d8e1b19ad284f3cfc88dc961;hpb=41559a6f2d66bcd4af4db17a0d9668df37d19f3b;p=gdcm.git diff --git a/src/gdcmDebug.cxx b/src/gdcmDebug.cxx index a742c86b..31afc8e7 100644 --- a/src/gdcmDebug.cxx +++ b/src/gdcmDebug.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDebug.cxx,v $ Language: C++ - Date: $Date: 2005/11/28 16:31:22 $ - Version: $Revision: 1.28 $ + Date: $Date: 2005/11/28 16:50:32 $ + Version: $Revision: 1.29 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -121,7 +121,8 @@ std::ostream &Debug::GetOutput () void Debug::SendToOutput(unsigned int type,std::string const &msg,const Base *object) { bool executed=false; - executed=CommandManager::ExecuteCommandConst(object,type,msg); + if( type != CMD_DEBUG && type != CMD_ASSERT ) + executed=CommandManager::ExecuteCommandConst(object,type,msg); if(!executed) GetOutput() << Command::GetCommandAsString(type) << ": " << msg;