Salome HOME
This commit was generated by cvs2git to create tag 'V1_4_0b1'.
[modules/kernel.git] / src / Utils / SALOME_utilities.py
index b86dbd587cb8fcf3150305eb88125645580bc8f6..bf18aaf700c2698c17d313f21631b72058ec9600 100644 (file)
@@ -24,20 +24,20 @@ def REPERE():
 def BEGIN_OF(msg):
     if __debug__:
         REPERE(); MYTRACE();
-        GLogger.putMessage("Begin of : "+ msg + "\n")
+        GLogger.putMessage("Begin of : "+ str(msg) + "\n")
         REPERE();
 
 
 def END_OF(msg):
     if __debug__:
         REPERE(); MYTRACE();
-        GLogger.putMessage("Normale end of : "+ msg + "\n")
+        GLogger.putMessage("Normale end of : "+ str(msg) + "\n")
         REPERE();
 
 def MESSAGE(msg):
     if __debug__:
         MYTRACE()
-        GLogger.putMessage(msg + "\n")
+        GLogger.putMessage(str(msg) + "\n")
 
 def SCRUTE(var_name, var_value):
     MYTRACE();