summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraristocratos <gnmjpl@gmail.com>2021-09-22 17:38:06 +0200
committeraristocratos <gnmjpl@gmail.com>2021-09-22 17:38:06 +0200
commitbc0c109e5e067f4df91cdf177dd8fb59500b99d8 (patch)
treeb6ca474bb5354cad8cb1924d990da0b408a5db05
parent2f27d9fa177c515f2613bd9ceb558f09554cfbd2 (diff)
Changed wrong filename error.log > btop.log
-rw-r--r--README.md4
-rw-r--r--src/btop_config.cpp2
2 files changed, 4 insertions, 2 deletions
diff --git a/README.md b/README.md
index c3530ea..20afcf4 100644
--- a/README.md
+++ b/README.md
@@ -226,6 +226,8 @@ Also needs a UTF8 locale and a font that covers:
Append `STATIC=true` to `make` command for static compilation.
+ Append `QUIET=true` for less verbose output.
+
Notice! Manually set `$ARCH` variable if cross-compiling
Use `$ADDFLAGS` variable for appending flags to both compiler and linker.
@@ -468,7 +470,7 @@ net_iface = "br0"
#* Show battery stats in top right if battery is present.
show_battery = True
-#* Set loglevel for "~/.config/btop/error.log" levels are: "ERROR" "WARNING" "INFO" "DEBUG".
+#* Set loglevel for "~/.config/btop/btop.log" levels are: "ERROR" "WARNING" "INFO" "DEBUG".
#* The level set includes all lower levels, i.e. "DEBUG" will show all logging info.
log_level = "DEBUG"
```
diff --git a/src/btop_config.cpp b/src/btop_config.cpp
index 11d144c..ccc5c21 100644
--- a/src/btop_config.cpp
+++ b/src/btop_config.cpp
@@ -167,7 +167,7 @@ namespace Config {
{"show_battery", "#* Show battery stats in top right if battery is present."},
- {"log_level", "#* Set loglevel for \"~/.config/btop/error.log\" levels are: \"ERROR\" \"WARNING\" \"INFO\" \"DEBUG\".\n"
+ {"log_level", "#* Set loglevel for \"~/.config/btop/btop.log\" levels are: \"ERROR\" \"WARNING\" \"INFO\" \"DEBUG\".\n"
"#* The level set includes all lower levels, i.e. \"DEBUG\" will show all logging info."}
};