From bb63f7148ada62680dfe421b06ae811dbb4fbc4f Mon Sep 17 00:00:00 2001 From: Adnan Hodzic Date: Tue, 2 Feb 2021 22:10:42 +0100 Subject: [PATCH] Improved missing `log` message --- auto_cpufreq/core.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/auto_cpufreq/core.py b/auto_cpufreq/core.py index ce14cd5..90ff218 100644 --- a/auto_cpufreq/core.py +++ b/auto_cpufreq/core.py @@ -212,7 +212,8 @@ def deploy_complete_msg(): footer() def deprecated_log_msg(): - print("\nThe --log flag has been renamed to --stats") + print("\n" + "-" * 24 + " auto-cpufreq log file renamed " + "-" * 24 + "\n") + print("The --log flag has been renamed to --stats\n") print("To view live stats, run:\nauto-cpufreq --stats") footer()