Index: trunk/LMDZ.COMMON/libf/phy_common/init_print_control_mod.F90
===================================================================
--- trunk/LMDZ.COMMON/libf/phy_common/init_print_control_mod.F90	(revision 1682)
+++ trunk/LMDZ.COMMON/libf/phy_common/init_print_control_mod.F90	(revision 1761)
@@ -23,5 +23,5 @@
     !Config  Help = Niveau d'impression pour le débogage
     !Config         (0 = minimum d'impression)
-    prt_level = 0
+!    prt_level = 0 ! default set in  print_control_mod)
     CALL getin_p('prt_level',prt_level)
 
@@ -31,5 +31,5 @@
     !Config  Help = unite de fichier pour les impressions 
     !Config         (defaut sortie standard = 6)
-    lunout=6
+!    lunout=6 ! default set in  print_control_mod)
     CALL getin_p('lunout', lunout)
 
@@ -51,5 +51,5 @@
     !Config  Help = positionne le mode debogage
 
-    debug = .FALSE.
+!    debug = .FALSE. ! default set in  print_control_mod)
     CALL getin_p('debug',debug)
     
Index: trunk/LMDZ.COMMON/libf/phy_common/print_control_mod.F90
===================================================================
--- trunk/LMDZ.COMMON/libf/phy_common/print_control_mod.F90	(revision 1682)
+++ trunk/LMDZ.COMMON/libf/phy_common/print_control_mod.F90	(revision 1761)
@@ -2,7 +2,7 @@
 MODULE print_control_mod
 
-  INTEGER,SAVE :: lunout ! default output file identifier (6==screen)
-  INTEGER,SAVE :: prt_level ! debug output level
-  LOGICAL,SAVE :: debug ! flag to specify if in "debug mode"
+  INTEGER,SAVE :: lunout=6 ! default output file identifier (6==screen)
+  INTEGER,SAVE :: prt_level=0 ! debug output level
+  LOGICAL,SAVE :: debug=.FALSE. ! flag to specify if in "debug mode"
 !$OMP THREADPRIVATE(lunout,prt_level,debug)
 
