Salome HOME
CCAR: remove tabs in python files
[modules/kernel.git] / src / Logger / SALOME_Trace.py
index 900693e4106b5a547ac99b14b1570fee5e07c1c3..78a6131a95782f2f28cdc76e170e0634d5c51bbe 100644 (file)
@@ -1,12 +1,30 @@
-#  SALOME Logger : CORBA server managing trace output
+#  -*- coding: iso-8859-1 -*-
+#  Copyright (C) 2007-2010  CEA/DEN, EDF R&D, OPEN CASCADE
+#
+#  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+#  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
 #
-#  Copyright (C) 2003  CEA/DEN, EDF R&D
+#  This library is free software; you can redistribute it and/or
+#  modify it under the terms of the GNU Lesser General Public
+#  License as published by the Free Software Foundation; either
+#  version 2.1 of the License.
 #
+#  This library is distributed in the hope that it will be useful,
+#  but WITHOUT ANY WARRANTY; without even the implied warranty of
+#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+#  Lesser General Public License for more details.
 #
+#  You should have received a copy of the GNU Lesser General Public
+#  License along with this library; if not, write to the Free Software
+#  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 #
+#  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+#
+
+#  SALOME Logger : CORBA server managing trace output
 #  File   : SALOME_Trace.py
 #  Module : SALOME
-
+#
 import sys
 import CosNaming
 from omniORB import CORBA
@@ -16,8 +34,8 @@ import os
 
 trace="local"
 if (os.environ.has_key("SALOME_trace")):
-    if (os.environ["SALOME_trace"] == "with_logger"):
-        trace="logger"
+  if (os.environ["SALOME_trace"] == "with_logger"):
+    trace="logger"
 
 class SALOME_Trace :
     def __init__(self):
@@ -41,7 +59,7 @@ class SALOME_Trace :
 
               except CosNaming.NamingContext.NotFound, e :
                     if steps == 1: print "Caught exception: Naming Service can't found Logger"
-              except CORBA.COMM_FAILURE, e:
+              except (CORBA.TRANSIENT,CORBA.OBJECT_NOT_EXIST,CORBA.COMM_FAILURE):
                     if steps == 1: print "Caught CORBA::SystemException CommFailure"
               except CORBA.SystemException, e:
                     if steps == 1: print "Caught CORBA::SystemException."
@@ -52,12 +70,9 @@ class SALOME_Trace :
 
               time.sleep(0.25)
               steps = steps - 1
-         
-         
+
     def putMessage ( self, LogMsg ) :
-        
         if (CORBA.is_nil(self.m_pInterfaceLogger)):
             print  LogMsg;
         else:
-            self.m_pInterfaceLogger.putMessage (LogMsg) 
-   
+            self.m_pInterfaceLogger.putMessage (LogMsg)