mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-22 05:55:38 +00:00
Add CLI one-time debug logging option
This commit is contained in:
parent
a5eba709d9
commit
e326bfa2f8
|
@ -26,6 +26,7 @@ Arguments:
|
|||
-h, --help \t Print this help
|
||||
-v, --version \t Print RetroDECK version
|
||||
--info-msg \t Print paths and config informations
|
||||
--debug \t Enable debug logging for this launch of RetroDECK (This may miss errors very early in the launch process)
|
||||
--configurator \t Starts the RetroDECK Configurator
|
||||
--compress-one <file> \t Compresses target file to a compatible format
|
||||
--compress-all <format> \t Compresses all supported games into a compatible format.\n\t\t\t\t\t\t Available formats are \"chd\", \"zip\", \"rvz\" and \"all\"
|
||||
|
@ -60,6 +61,10 @@ https://retrodeck.net
|
|||
cat $rd_conf
|
||||
exit
|
||||
;;
|
||||
--debug*)
|
||||
logging_level="debug"
|
||||
shift
|
||||
;;
|
||||
--compress-one*)
|
||||
cli_compress_single_game "$2"
|
||||
exit
|
||||
|
|
Loading…
Reference in a new issue