mirror of
git://git.gnupg.org/gnupg.git
synced 2025-02-01 16:33:02 +01:00
Described new options
This commit is contained in:
parent
103a442be9
commit
6c9c5accd1
@ -146,11 +146,34 @@ This option is only useful for testing; it sets the system time back or
|
|||||||
forth to @var{epoch} which is the number of seconds elapsed since the year
|
forth to @var{epoch} which is the number of seconds elapsed since the year
|
||||||
1970.
|
1970.
|
||||||
|
|
||||||
|
@item --debug-level @var{level}
|
||||||
|
@opindex debug-level
|
||||||
|
Select the debug level for investigating problems. @var{level} may be
|
||||||
|
one of:
|
||||||
|
|
||||||
|
@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
|
||||||
|
|
||||||
|
How these messages are mapped to the actual debugging flags is not
|
||||||
|
specified and may change with newer releaes of this program. They are
|
||||||
|
however carefully selected to best aid in debugging.
|
||||||
|
|
||||||
@item --debug @var{flags}
|
@item --debug @var{flags}
|
||||||
@opindex debug
|
@opindex debug
|
||||||
This option is only useful for debugging and the behaviour may change at
|
This option is only useful for debugging and the behaviour may change at
|
||||||
any time without notice. FLAGS are bit encoded and may be given in
|
any time without notice. FLAGS are bit encoded and may be given in
|
||||||
usual C-Syntax. The currently defined bits are:
|
usual C-Syntax. The currently defined bits are:
|
||||||
|
|
||||||
@table @code
|
@table @code
|
||||||
@item 0 (1)
|
@item 0 (1)
|
||||||
X.509 or OpenPGP protocol related data
|
X.509 or OpenPGP protocol related data
|
||||||
|
@ -343,11 +343,35 @@ This option is only useful for testing; it sets the system time back or
|
|||||||
forth to @var{epoch} which is the number of seconds elapsed since the year
|
forth to @var{epoch} which is the number of seconds elapsed since the year
|
||||||
1970.
|
1970.
|
||||||
|
|
||||||
|
@item --debug-level @var{level}
|
||||||
|
@opindex debug-level
|
||||||
|
Select the debug level for investigating problems. @var{level} may be
|
||||||
|
one of:
|
||||||
|
|
||||||
|
@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
|
||||||
|
|
||||||
|
How these messages are mapped to the actual debugging flags is not
|
||||||
|
specified and may change with newer releaes of this program. They are
|
||||||
|
however carefully selected to best aid in debugging.
|
||||||
|
|
||||||
@item --debug @var{flags}
|
@item --debug @var{flags}
|
||||||
@opindex debug
|
@opindex debug
|
||||||
This option is only useful for debugging and the behaviour may change at
|
This option is only useful for debugging and the behaviour may change
|
||||||
any time without notice. FLAGS are bit encoded and may be given in
|
at any time without notice; using @code{--debug-levels} is the
|
||||||
usual C-Syntax. The currently defined bits are:
|
preferred method to select the debug verbosity. FLAGS are bit encoded
|
||||||
|
and may be given in usual C-Syntax. The currently defined bits are:
|
||||||
|
|
||||||
@table @code
|
@table @code
|
||||||
@item 0 (1)
|
@item 0 (1)
|
||||||
X.509 or OpenPGP protocol related data
|
X.509 or OpenPGP protocol related data
|
||||||
@ -365,10 +389,11 @@ usual C-Syntax. The currently defined bits are:
|
|||||||
write hashed data to files named @code{dbgmd-000*}
|
write hashed data to files named @code{dbgmd-000*}
|
||||||
@item 10 (1024)
|
@item 10 (1024)
|
||||||
trace Assuan protocol
|
trace Assuan protocol
|
||||||
@item 12 (4096)
|
|
||||||
bypass all certificate validation
|
|
||||||
@end table
|
@end table
|
||||||
|
|
||||||
|
Note, that all flags set using this option may get overriden by
|
||||||
|
@code{--debug-level}.
|
||||||
|
|
||||||
@item --debug-all
|
@item --debug-all
|
||||||
@opindex debug-all
|
@opindex debug-all
|
||||||
Same as @code{--debug=0xffffffff}
|
Same as @code{--debug=0xffffffff}
|
||||||
|
@ -88,11 +88,34 @@ Outputs additional information while running.
|
|||||||
You can increase the verbosity by giving several
|
You can increase the verbosity by giving several
|
||||||
verbose commands to @sc{gpgsm}, such as @samp{-vv}.
|
verbose commands to @sc{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:
|
||||||
|
|
||||||
|
@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
|
||||||
|
|
||||||
|
How these messages are mapped to the actual debugging flags is not
|
||||||
|
specified and may change with newer releaes of this program. They are
|
||||||
|
however carefully selected to best aid in debugging.
|
||||||
|
|
||||||
@item --debug @var{flags}
|
@item --debug @var{flags}
|
||||||
@opindex debug
|
@opindex debug
|
||||||
This option is only useful for debugging and the behaviour may change at
|
This option is only useful for debugging and the behaviour may change at
|
||||||
any time without notice. FLAGS are bit encoded and may be given in
|
any time without notice. FLAGS are bit encoded and may be given in
|
||||||
usual C-Syntax. The currently defined bits are:
|
usual C-Syntax. The currently defined bits are:
|
||||||
|
|
||||||
@table @code
|
@table @code
|
||||||
@item 0 (1)
|
@item 0 (1)
|
||||||
X.509 or OpenPGP protocol related data
|
X.509 or OpenPGP protocol related data
|
||||||
|
Loading…
x
Reference in New Issue
Block a user