mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-30 02:50:39 +00:00
Add --scrub-log flag to remove possibly sensitive information from the log
This commit is contained in:
parent
2e8e81a926
commit
1d77153a2b
7 changed files with 308 additions and 17 deletions
|
@ -71,6 +71,9 @@ public class App {
|
|||
parser.addArgument("--log-file")
|
||||
.type(File.class)
|
||||
.help("Write log output to the given file. If --verbose is also given, the detailed logs will only be written to the log file.");
|
||||
parser.addArgument("--scrub-log")
|
||||
.action(Arguments.storeTrue())
|
||||
.help("Scrub possibly sensitive information from the log, like phone numbers and UUIDs.");
|
||||
parser.addArgument("-c", "--config")
|
||||
.help("Set the path, where to store the config (Default: $XDG_DATA_HOME/signal-cli , $HOME/.local/share/signal-cli).");
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue