summaryrefslogtreecommitdiffstats
path: root/src/clap.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/clap.rs')
-rw-r--r--src/clap.rs17
1 files changed, 9 insertions, 8 deletions
diff --git a/src/clap.rs b/src/clap.rs
index 3a50ee54..1e6d1087 100644
--- a/src/clap.rs
+++ b/src/clap.rs
@@ -81,13 +81,14 @@ custom layouts.\n\n",
"\
When searching for a process, enables case sensitivity by default.\n\n",
);
- let debug = Arg::with_name("debug")
- .long("debug")
- .help("Enables debug logging.")
- .long_help(
- "\
-Enables debug logging. The program will print where it logged to after running.",
- );
+ // TODO: [DEBUG] Add a proper debugging solution.
+ // let debug = Arg::with_name("debug")
+ // .long("debug")
+ // .help("Enables debug logging.")
+ // .long_help(
+ // "\
+ // Enables debug logging. The program will print where it logged to after running.",
+ // );
// TODO: [DIAGNOSE] Add a diagnose option to help with debugging.
let disable_click = Arg::with_name("disable_click")
.long("disable_click")
@@ -362,7 +363,7 @@ Defaults to showing the process widget in tree mode.\n\n",
.arg(case_sensitive)
.arg(config_location)
.arg(color)
- .arg(debug)
+ // .arg(debug)
.arg(mem_as_value)
.arg(default_time_value)
.arg(default_widget_count)