Salome HOME
Don't use LocalTraceCollector for BRIEF_INFOS so that it is always displayed (no... cbr/always_display_brief_info
authorChristophe Bourcier <christophe.bourcier@cea.fr>
Fri, 21 Apr 2023 14:07:33 +0000 (16:07 +0200)
committerChristophe Bourcier <christophe.bourcier@cea.fr>
Fri, 21 Apr 2023 14:07:33 +0000 (16:07 +0200)
src/SALOMELocalTrace/utilities.h

index aeea32f8db45fe53162fa7e36e46934dc099b903..531042e516908a40c0576fc27b4ce2175c487e7a 100644 (file)
@@ -64,7 +64,7 @@
 // --- Some macros are always defined (without _DEBUG_): for use with release version
 
 #define INFOS(msg) {MESS_BEGIN("- Trace ") << msg << MESS_END}
-#define BRIEF_INFOS(msg) {std::ostringstream os; os<< msg << std::endl; LocalTraceBufferPool::instance()->insert(BRIEF_MESS, os.str().c_str());}
+#define BRIEF_INFOS(msg) {std::cout << msg << std::endl;}
 #define PYSCRIPT(msg) {MESS_INIT("---PYSCRIPT--- ") << msg << MESS_END}
 #define INTERRUPTION(msg) {MESS_BEGIN("- INTERRUPTION: ")<< msg << MESS_ABORT}