Skip to content
Snippets Groups Projects
Commit b04e7039 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

add 1 more verbosity level; bump default to 3
parent 0e8ab3b1
No related branches found
No related tags found
No related merge requests found
// $Id: CommandLine.cpp,v 1.36 2004-05-12 20:16:49 geuzaine Exp $ // $Id: CommandLine.cpp,v 1.37 2004-05-15 08:24:07 geuzaine Exp $
// //
// Copyright (C) 1997-2004 C. Geuzaine, J.-F. Remacle // Copyright (C) 1997-2004 C. Geuzaine, J.-F. Remacle
// //
...@@ -108,7 +108,7 @@ void Print_Usage(char *name){ ...@@ -108,7 +108,7 @@ void Print_Usage(char *name){
Msg(DIRECT, " -a, -g, -m, -s, -p start in automatic, geometry, mesh, solver or post-processing"); Msg(DIRECT, " -a, -g, -m, -s, -p start in automatic, geometry, mesh, solver or post-processing");
Msg(DIRECT, " mode (default: automatic)"); Msg(DIRECT, " mode (default: automatic)");
#endif #endif
Msg(DIRECT, " -v int set verbosity level (default: 2)"); Msg(DIRECT, " -v int set verbosity level (default: 3)");
Msg(DIRECT, " -string \"string\" parse string before project file"); Msg(DIRECT, " -string \"string\" parse string before project file");
Msg(DIRECT, " -option file parse option file before GUI creation"); Msg(DIRECT, " -option file parse option file before GUI creation");
Msg(DIRECT, " -convert file file perform batch conversion of view(s)/mesh into latest file formats"); Msg(DIRECT, " -convert file file perform batch conversion of view(s)/mesh into latest file formats");
......
...@@ -613,7 +613,7 @@ StringXNumber GeneralOptions_Number[] = { ...@@ -613,7 +613,7 @@ StringXNumber GeneralOptions_Number[] = {
{ F|O, "VectorType" , opt_general_vector_type , DRAW_POST_ARROW3D , { F|O, "VectorType" , opt_general_vector_type , DRAW_POST_ARROW3D ,
"Default vector display type (for normals, etc.)" }, "Default vector display type (for normals, etc.)" },
{ F|O, "Verbosity" , opt_general_verbosity , 2. , { F|O, "Verbosity" , opt_general_verbosity , 3. ,
"Level of information printed during processing (0=no information)" }, "Level of information printed during processing (0=no information)" },
{ F|S, "VisibilityMode" , opt_general_visibility_mode , 0. , { F|S, "VisibilityMode" , opt_general_visibility_mode , 0. ,
"Default mode for the visibility browser (0=Geometry+Mesh, 1=Geometry, 2=Mesh)" }, "Default mode for the visibility browser (0=Geometry+Mesh, 1=Geometry, 2=Mesh)" },
......
// $Id: Message.cpp,v 1.49 2004-05-15 08:07:20 geuzaine Exp $ // $Id: Message.cpp,v 1.50 2004-05-15 08:24:07 geuzaine Exp $
// //
// Copyright (C) 1997-2004 C. Geuzaine, J.-F. Remacle // Copyright (C) 1997-2004 C. Geuzaine, J.-F. Remacle
// //
...@@ -81,7 +81,7 @@ void Msg(int level, char *fmt, ...) ...@@ -81,7 +81,7 @@ void Msg(int level, char *fmt, ...)
// *INDENT-OFF* // *INDENT-OFF*
switch(level){ switch(level){
case DIRECT : color = 5; verb = 2; break ; case DIRECT : color = 5; verb = 2; break ;
case SOLVER : color = 4; verb = 2; break ; case SOLVER : color = 4; verb = 3; break ;
case STATUS1N : log = 0; //fallthrough case STATUS1N : log = 0; //fallthrough
case STATUS1 : str = INFO_STR; verb = 1; window = 0; break ; case STATUS1 : str = INFO_STR; verb = 1; window = 0; break ;
...@@ -106,14 +106,14 @@ void Msg(int level, char *fmt, ...) ...@@ -106,14 +106,14 @@ void Msg(int level, char *fmt, ...)
case WARNING3 : str = WHITE_STR; verb = 1; break ; case WARNING3 : str = WHITE_STR; verb = 1; break ;
case INFO : case INFO :
case INFO1 : str = INFO_STR; verb = 2; break ; case INFO1 : str = INFO_STR; verb = 3; break ;
case INFO2 : case INFO2 :
case INFO3 : str = WHITE_STR; verb = 2; break ; case INFO3 : str = WHITE_STR; verb = 3; break ;
case DEBUG : case DEBUG :
case DEBUG1 : str = DEBUG_STR; verb = 3; break ; case DEBUG1 : str = DEBUG_STR; verb = 4; break ;
case DEBUG2 : case DEBUG2 :
case DEBUG3 : str = WHITE_STR; verb = 3; break ; case DEBUG3 : str = WHITE_STR; verb = 4; break ;
default : return; default : return;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment