DEBUG OPTIONS
To enable verbose mode for the gbounty tool, the -v
, -vv
, or -vvv
flags can be used. These flags will enable the internal logger to write warning, error, info, and debug log messages, respectively. The log messages can be written to a file by using the -vout
flag, followed by the desired path and filename for the output file.
For example, to enable verbose mode and write the log messages to a file, the following command can be used:
This command will enable the internal logger to write warning and error log messages to the log.txt
file. To enable verbose mode and write all log messages to a file, the -vvv
flag can be used instead, like so:
This will enable the internal logger to write all log messages (debug, info, warning, and error) to the log.txt
file.
Last updated