From 1cefae55d1c746a27950a0ad4c87f7b5b447fd11 Mon Sep 17 00:00:00 2001 From: Jeroen Oudshoorn Date: Sun, 4 Feb 2024 17:48:22 +0100 Subject: [PATCH] moved the majority of logging to debug --- pwnagotchi/plugins/default/fix_services.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pwnagotchi/plugins/default/fix_services.py b/pwnagotchi/plugins/default/fix_services.py index 5ab9d518..e79eb3b2 100644 --- a/pwnagotchi/plugins/default/fix_services.py +++ b/pwnagotchi/plugins/default/fix_services.py @@ -46,7 +46,7 @@ class FixServices(plugins.Plugin): last_lines = self.get_last_lines('journalctl', ['-n10', '-k'], 10) try: cmd_output = subprocess.check_output("ip link show wlan0mon", shell=True) - logging.info("[Fix_Services ip link show wlan0mon]: %s" % repr(cmd_output)) + logging.debug("[Fix_Services ip link show wlan0mon]: %s" % repr(cmd_output)) if ",UP," in str(cmd_output): logging.info("wlan0mon is up.")