Salome HOME
[bos #32517][EDF] Dynamic log messages switched on and off by SALOME_VERBOSE environm... V9_10_0b1
authorKonstantin LEONTEV <konstantin.leontev@opencascade.com>
Tue, 15 Nov 2022 06:18:02 +0000 (09:18 +0300)
committerKonstantin LEONTEV <konstantin.leontev@opencascade.com>
Tue, 15 Nov 2022 06:18:02 +0000 (09:18 +0300)
src/AddComponent/AddComponent_Impl.cxx
src/AddComponent/Adder_Impl.cxx
src/AdditionComponent/AdditionComponent_Impl.cxx
src/AdditionComponent/Addition_Adder_Impl.cxx
src/DataStreamComponent/DataStreamComponent_Impl.cxx
src/DivComponent/DivComponent.cxx
src/MulComponent/MulComponent.cxx
src/SIGNALSComponent/SIGNALSComponent_Impl.cxx
src/SubComponent/SubComponent.cxx
src/SyrComponent/SyrComponent_Impl.cxx
src/TypesCheck/TypesCheck_Impl.cxx

index 82572f72dd8c1bb4e7f2d33521326c532a580099..e7c18ea3d8460a00483b36285a3968dbd875f693 100644 (file)
@@ -55,7 +55,7 @@ AddComponent_Impl::AddComponent_Impl( CORBA::ORB_ptr orb,
   Engines_Component_i(orb, poa, contId, instanceName, interfaceName,1,withRegistry) {
   MESSAGE("AddComponent_Impl::AddComponent_Impl this " << hex << this << dec
           << "activate object instanceName("
-          << instanceName << ") interfaceName(" << interfaceName << ")" )
+          << instanceName << ") interfaceName(" << interfaceName << ")" );
   _thisObj = this ;
   _id = _poa->activate_object(_thisObj);
   LastAddition = 0 ;
@@ -93,7 +93,7 @@ CORBA::Double AddComponent_Impl::Add( CORBA::Double x , CORBA::Double y , CORBA:
   Sleep(S*1000);
 #endif
   MESSAGE( "AddComponent_Impl::Add( " <<  x << " , " << y << " , " << z
-       << " ) returns " << (x - y) << " after " << S << " seconds" )
+       << " ) returns " << (x - y) << " after " << S << " seconds" );
   LastAddition = z ;
   endService( " AddComponent_Impl::Add"  );
   return (x - y) ;
index 710e2a24d17b9f720727d89cee787c8438d45e73..07a9adbff10c5036ec581fe7e2581bfc42bec7cb 100644 (file)
@@ -54,7 +54,7 @@ Adder_Impl::Adder_Impl( CORBA::ORB_ptr orb ,
   Names( graphName , nodeName ) ;
   MESSAGE("Adder_Impl::Adder_Impl activate object instanceName("
           << instanceName << ") interfaceName(" << interfaceName << ") --> "
-          << hex << (void *) this << dec )
+          << hex << (void *) this << dec );
   beginService( "Adder_Impl::Adder_Impl" );
   _thisObj = this ;
   _id = _poa->activate_object(_thisObj);
@@ -104,7 +104,7 @@ CORBA::Double Adder_Impl::Add( CORBA::Double x , CORBA::Double y , CORBA::Double
   Sleep(S*1000);
 #endif
   MESSAGE( "Adder_Impl::Add( " <<  x << " , " << y << " , " << z
-       << " ) returns " << -(x - y) << " after " << S << " seconds" )
+       << " ) returns " << -(x - y) << " after " << S << " seconds" );
   LastAddition = z ;
   endService( " Adder_Impl::Add"  );
   return -(x - y) ;
@@ -135,7 +135,7 @@ CORBA::Double Adder_Impl::AddAndCompare( CORBA::Double x , CORBA::Double y ,
   Sleep(S*1000);
 #endif
   MESSAGE( "Adder_Impl::AddAndCompare( " <<  x << " , " << y << " , " << z
-       << " ) returns " << -(x - y) << " after " << S << " seconds" )
+       << " ) returns " << -(x - y) << " after " << S << " seconds" );
   LastAddition = z ;
   double ValFunc ;
   sendMessage(NOTIF_TRACE, "Adder_Impl::AddAndCompare will call anOtherAdder->LastValue()");
index cca616f2e24b797d56c95a93d0eb3377b16a647d..d50cb3b401eb556a1c51c240b845e5e55da964f6 100644 (file)
@@ -55,7 +55,7 @@ AdditionInterface_Impl::AdditionInterface_Impl( CORBA::ORB_ptr orb,
   Engines_Component_i(orb, poa, contId, instanceName, interfaceName,1,withRegistry) {
   MESSAGE("AdditionInterface_Impl::AdditionInterface_Impl this " << hex << this << dec
           << "activate object instanceName("
-          << instanceName << ") interfaceName(" << interfaceName << ")" )
+          << instanceName << ") interfaceName(" << interfaceName << ")" );
   _thisObj = this ;
   _id = _poa->activate_object(_thisObj);
   LastAddition = 0 ;
@@ -92,7 +92,7 @@ CORBA::Double AdditionInterface_Impl::Add( CORBA::Double x , CORBA::Double y , C
 #else
   Sleep(S*1000);
 #endif  
-    MESSAGE( "AdditionInterface_Impl::Add( " <<  x << " , " << y << " , " << z << " ) returns " << (x - y) << " after " << S << " seconds" )
+    MESSAGE( "AdditionInterface_Impl::Add( " <<  x << " , " << y << " , " << z << " ) returns " << (x - y) << " after " << S << " seconds" );
   LastAddition = z ;
   endService( " AdditionInterface_Impl::Add"  );
   return (x - y) ;
index 2ada4bbd8aeb42c2f93419a1b9de4fed306ae7bb..2e357b16f977c95abf8c57ec24cf0fb12227b3ce 100644 (file)
@@ -54,7 +54,7 @@ Adder_Impl::Adder_Impl( CORBA::ORB_ptr orb ,
   Names( graphName , nodeName ) ;
   MESSAGE("Adder_Impl::Adder_Impl activate object instanceName("
           << instanceName << ") interfaceName(" << interfaceName << ") --> "
-          << hex << (void *) this << dec )
+          << hex << (void *) this << dec );
   beginService( "Adder_Impl::Adder_Impl" );
   _thisObj = this ;
   _id = _poa->activate_object(_thisObj);
@@ -104,7 +104,7 @@ CORBA::Double Adder_Impl::Add( CORBA::Double x , CORBA::Double y , CORBA::Double
   Sleep(S*1000);
 #endif
   MESSAGE( "Adder_Impl::Add( " <<  x << " , " << y << " , " << z
-       << " ) returns " << -(x - y) << " after " << S << " seconds" )
+       << " ) returns " << -(x - y) << " after " << S << " seconds" );
   LastAddition = z ;
   endService( " Adder_Impl::Add"  );
   return -(x - y) ;
@@ -135,7 +135,7 @@ CORBA::Double Adder_Impl::AddAndCompare( CORBA::Double x , CORBA::Double y ,
   Sleep(S*1000);
 #endif
   MESSAGE( "Adder_Impl::AddAndCompare( " <<  x << " , " << y << " , " << z
-       << " ) returns " << -(x - y) << " after " << S << " seconds" )
+       << " ) returns " << -(x - y) << " after " << S << " seconds" );
   LastAddition = z ;
   double ValFunc ;
   sendMessage(NOTIF_TRACE, "Adder_Impl::AddAndCompare will call anOtherAdder->LastValue()");
index 2b5e291821eb0f0a9d1003916e93029a47bbed7a..d9da1f1a217f42fb3de01a370e703f347457cf9a 100644 (file)
@@ -48,7 +48,7 @@ DataStreamFactory_Impl::DataStreamFactory_Impl( CORBA::ORB_ptr orb,
   Engines_Component_i(orb, poa, contId, instanceName, interfaceName,1,withRegistry) {
   MESSAGE("DataStreamFactory_Impl::DataStreamFactory_Impl this " << hex << this << dec
           << "activate object instanceName("
-          << instanceName << ") interfaceName(" << interfaceName << ")" )
+          << instanceName << ") interfaceName(" << interfaceName << ")" );
   _thisObj = this ;
   _id = _poa->activate_object(_thisObj);
 }
@@ -158,7 +158,7 @@ DataStream_Impl::DataStream_Impl( CORBA::ORB_ptr orb ,
   Names( graphName , nodeName ) ;
   MESSAGE("DataStream_Impl::DataStream_Impl activate object instanceName("
           << instanceName << ") interfaceName(" << interfaceName << ") --> "
-          << hex << (void *) this << dec )
+          << hex << (void *) this << dec );
   beginService( "DataStream_Impl::DataStream_Impl" );
   _thisObj = this ;
   _id = _poa->activate_object(_thisObj);
index e990575632b70f4fcb0a6ad920e8f1f1612ce754..b5f2d7c9147fc5138988b83c7df8d81ccc4c79bd 100644 (file)
@@ -87,7 +87,7 @@ void DivComponentEngine::Div( double x , double y , double & z ) {
 #endif
   sendMessage(NOTIF_TRACE, "Div is Much More Difficult Operation");
   MESSAGE("DivComponentEngine::Div( " <<  x << " , " << y << " , " << z
-       << " ) after " << S << " seconds" )
+       << " ) after " << S << " seconds" );
   endService( " DivComponentEngine::Div"  );
 }
 
index 7a77e165839bb2e79cbea9e5e20fe89fdd12e7b1..969ccfdef88424e975c909abdf00ec20ef445074 100644 (file)
@@ -86,7 +86,7 @@ void MulComponentEngine::Mul( double x , double y , double & z ) {
   Sleep(S*1000);
 #endif
   MESSAGE( "MulComponentEngine::Mul( " <<  x << " , " << y << " , " << z
-       << " ) after " << S << " seconds" )
+       << " ) after " << S << " seconds" );
   endService( " MulComponentEngine::Mul"  );
 }
 
index e21402abdbabc1d56a795976b70661d94311e98d..39593f9e64928472b13787cad213a77ca9971e8d 100644 (file)
@@ -47,7 +47,7 @@ SIGNALSComponent_Impl::SIGNALSComponent_Impl( CORBA::ORB_ptr orb,
   Engines_Component_i(orb, poa, contId, instanceName, interfaceName,1,withRegistry)
 {
   MESSAGE("SIGNALSComponent_Impl::SIGNALSComponent_Impl activate object instanceName("
-          << instanceName << ") interfaceName(" << interfaceName << ")" )
+          << instanceName << ") interfaceName(" << interfaceName << ")" );
   _thisObj = this ;
   _id = _poa->activate_object(_thisObj);
   NULLPTR = NULL ;
index bd2525836a82a5ad12f524820a367efe780b8e8a..4e30cacc0a1b838ed147c6437cb8f1d13adbc9a4 100644 (file)
@@ -85,7 +85,7 @@ void SubComponentEngine::Sub( double x , double y , double & z ) {
   Sleep(S*1000);
 #endif
   MESSAGE( "SubComponentEngine::Sub( " <<  x << " , " << y << " , " << z
-       << " ) after " << S << " seconds" )
+       << " ) after " << S << " seconds" );
   endService( " SubComponentEngine::Sub"  );
 }
 
index 49e1e531a2dde96dc2d84c7a6bad7e8aa585673c..e9005982e19f1294cf040b14b107b99880622df1 100644 (file)
@@ -50,7 +50,7 @@ SyrComponent_Impl::SyrComponent_Impl( CORBA::ORB_ptr orb ,
   Engines_Component_i(orb, poa, contId, instanceName, interfaceName,true/*notif is true here for message*/,withRegistry) {
   MESSAGE("SyrComponent_Impl::SyrComponent_Impl this " << hex << this << dec
           << "activate object instanceName("
-          << instanceName << ") interfaceName(" << interfaceName << ")" )
+          << instanceName << ") interfaceName(" << interfaceName << ")" );
   if ( kactivate ) {
     _thisObj = this ;
     _id = _poa->activate_object(_thisObj);
@@ -374,7 +374,7 @@ ListOfSyr_Impl::ListOfSyr_Impl( CORBA::ORB_ptr orb ,
   Names( graphName , nodeName ) ;
   MESSAGE("ListOfSyr_Impl::ListOfSyr_Impl activate object instanceName("
           << instanceName << ") interfaceName(" << interfaceName << ") --> "
-          << hex << (void *) this << dec )
+          << hex << (void *) this << dec );
   beginService( "ListOfSyr_Impl::ListOfSyr_Impl" );
   _thisObj = this ;
   _id = _poa->activate_object(_thisObj);
@@ -452,7 +452,7 @@ Syr_Impl::Syr_Impl( CORBA::ORB_ptr orb ,
   Names( graphName , nodeName ) ;
   MESSAGE("Syr_Impl::Syr_Impl activate object instanceName("
           << instanceName << ") interfaceName(" << interfaceName << ") --> "
-          << hex << (void *) this << dec )
+          << hex << (void *) this << dec );
   beginService( "Syr_Impl::Syr_Impl" );
   _thisObj = this ;
   _id = _poa->activate_object(_thisObj);
index 3ffc7d22dc4bb12e30048759765dac636e1b742f..6a405446d44735effdd454b2a32871e152248dc3 100644 (file)
@@ -49,7 +49,7 @@ TypesCheck_Impl::TypesCheck_Impl( CORBA::ORB_ptr orb ,
   Engines_Component_i(orb, poa, contId, instanceName, interfaceName,1,withRegistry) {
   MESSAGE("TypesCheck_Impl::TypesCheck_Impl this " << hex << this << dec
           << "activate object instanceName("
-          << instanceName << ") interfaceName(" << interfaceName << ")" )
+          << instanceName << ") interfaceName(" << interfaceName << ")" );
   if ( kactivate ) {
     _thisObj = this ;
     _id = _poa->activate_object(_thisObj);