summaryrefslogtreecommitdiffstats
path: root/src/app.rs
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2020-11-02 22:39:02 -0500
committerGitHub <noreply@github.com>2020-11-02 22:39:02 -0500
commite8358f8f47f707b2af99e3b69dd1d7c3d2ca0ef3 (patch)
tree6e783692e52373ecf81d32a557ee596a25171801 /src/app.rs
parent9e858713fda0c622e74b47bca14bf985655273da (diff)
bug: fix incorrect basic cpu spacing (#291)
Fixes a bug with CPU spacing on basic mode.
Diffstat (limited to 'src/app.rs')
-rw-r--r--src/app.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app.rs b/src/app.rs
index 2f63853f..d80a206c 100644
--- a/src/app.rs
+++ b/src/app.rs
@@ -1404,7 +1404,7 @@ impl App {
/// Call this whenever the config value is updated!
fn update_config_file(&mut self) -> anyhow::Result<()> {
if self.app_config_fields.no_write {
- debug!("No write enabled. Config will not be written.");
+ // debug!("No write enabled. Config will not be written.");
// Don't write!
// FIXME: [CONFIG] This should be made VERY clear to the user... make a thing saying "it will not write due to no_write option"
Ok(())