1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +02:00

Allow for numerical debug levels.

This commit is contained in:
Werner Koch 2009-12-03 19:13:19 +00:00
parent 56680123a6
commit 1356693b0d
40 changed files with 5371 additions and 5208 deletions

View file

@ -213,20 +213,26 @@ forth to @var{epoch} which is the number of seconds elapsed since the year
@item --debug-level @var{level}
@opindex debug-level
Select the debug level for investigating problems. @var{level} may be
one of:
a numeric value or a keyword:
@table @code
@item none
no debugging at all.
@item basic
some basic debug messages
@item advanced
more verbose debug messages
@item expert
even more detailed messages
@item guru
all of the debug messages you can get
@end table
@table @code
@item none
No debugging at all. A value of less than 1 may be used instead of
the keyword.
@item basic
Some basic debug messages. A value between 1 and 2 may be used
instead of the keyword.
@item advanced
More verbose debug messages. A value between 3 and 5 may be used
instead of the keyword.
@item expert
Even more detailed messages. A value between 6 and 8 may be used
instead of the keyword.
@item guru
All of the debug messages you can get. A value greater than 8 may be
used instead of the keyword. The creation of hash tracing files is
only enabled if the keyword is used.
@end table
How these messages are mapped to the actual debugging flags is not
specified and may change with newer releases of this program. They are

View file

@ -2134,6 +2134,34 @@ therefore enables a fast listing of the encryption keys.
@opindex interactive
Prompt before overwriting any files.
@item --debug-level @var{level}
@opindex debug-level
Select the debug level for investigating problems. @var{level} may be
a numeric value or by a keyword:
@table @code
@item none
No debugging at all. A value of less than 1 may be used instead of
the keyword.
@item basic
Some basic debug messages. A value between 1 and 2 may be used
instead of the keyword.
@item advanced
More verbose debug messages. A value between 3 and 5 may be used
instead of the keyword.
@item expert
Even more detailed messages. A value between 6 and 8 may be used
instead of the keyword.
@item guru
All of the debug messages you can get. A value greater than 8 may be
used instead of the keyword. The creation of hash tracing files is
only enabled if the keyword is used.
@end table
How these messages are mapped to the actual debugging flags is not
specified and may change with newer releases of this program. They are
however carefully selected to best aid in debugging.
@item --debug @var{flags}
@opindex debug
Set debugging flags. All flags are or-ed and @var{flags} may

View file

@ -617,19 +617,25 @@ is given as fingerprint or keygrip.
@item --debug-level @var{level}
@opindex debug-level
Select the debug level for investigating problems. @var{level} may be
one of:
a numeric value or by a keyword:
@table @code
@item none
no debugging at all.
No debugging at all. A value of less than 1 may be used instead of
the keyword.
@item basic
some basic debug messages
Some basic debug messages. A value between 1 and 2 may be used
instead of the keyword.
@item advanced
more verbose debug messages
More verbose debug messages. A value between 3 and 5 may be used
instead of the keyword.
@item expert
even more detailed messages
Even more detailed messages. A value between 6 and 8 may be used
instead of the keyword.
@item guru
all of the debug messages you can get
All of the debug messages you can get. A value greater than 8 may be
used instead of the keyword. The creation of hash tracing files is
only enabled if the keyword is used.
@end table
How these messages are mapped to the actual debugging flags is not

View file

@ -123,20 +123,26 @@ verbose commands to @command{gpgsm}, such as @samp{-vv}.
@item --debug-level @var{level}
@opindex debug-level
Select the debug level for investigating problems. @var{level} may be
one of:
Select the debug level for investigating problems. @var{level} may be
a numeric value or a keyword:
@table @code
@item none
no debugging at all.
No debugging at all. A value of less than 1 may be used instead of
the keyword.
@item basic
some basic debug messages
Some basic debug messages. A value between 1 and 2 may be used
instead of the keyword.
@item advanced
more verbose debug messages
More verbose debug messages. A value between 3 and 5 may be used
instead of the keyword.
@item expert
even more detailed messages
Even more detailed messages. A value between 6 and 8 may be used
instead of the keyword.
@item guru
all of the debug messages you can get
All of the debug messages you can get. A value greater than 8 may be
used instead of the keyword. The creation of hash tracing files is
only enabled if the keyword is used.
@end table
How these messages are mapped to the actual debugging flags is not