Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gmsh
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Larry Price
gmsh
Commits
b04e7039
Commit
b04e7039
authored
20 years ago
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
add 1 more verbosity level; bump default to 3
parent
0e8ab3b1
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Common/CommandLine.cpp
+2
-2
2 additions, 2 deletions
Common/CommandLine.cpp
Common/DefaultOptions.h
+1
-1
1 addition, 1 deletion
Common/DefaultOptions.h
Fltk/Message.cpp
+6
-6
6 additions, 6 deletions
Fltk/Message.cpp
with
9 additions
and
9 deletions
Common/CommandLine.cpp
+
2
−
2
View file @
b04e7039
// $Id: CommandLine.cpp,v 1.3
6
2004-05-1
2 20:16:49
geuzaine Exp $
// $Id: CommandLine.cpp,v 1.3
7
2004-05-1
5 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"
);
...
...
This diff is collapsed.
Click to expand it.
Common/DefaultOptions.h
+
1
−
1
View file @
b04e7039
...
@@ -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)"
},
...
...
This diff is collapsed.
Click to expand it.
Fltk/Message.cpp
+
6
−
6
View file @
b04e7039
// $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
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment