From 4d1aa79bfdc029b3739a3c7c9ebdd1744d34a3e0 Mon Sep 17 00:00:00 2001 From: Jeroen Oudshoorn Date: Thu, 12 Dec 2024 08:48:10 +0100 Subject: [PATCH] Removed tensorflow debug from log.py --- pwnagotchi/log.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pwnagotchi/log.py b/pwnagotchi/log.py index cca7bc52..41b0def6 100644 --- a/pwnagotchi/log.py +++ b/pwnagotchi/log.py @@ -259,7 +259,6 @@ def setup_logging(args, config): if not args.debug: # disable scapy and tensorflow logging logging.getLogger("scapy").disabled = True - logging.getLogger('tensorflow').disabled = True # https://stackoverflow.com/questions/15777951/how-to-suppress-pandas-future-warning warnings.simplefilter(action='ignore', category=FutureWarning) warnings.simplefilter(action='ignore', category=DeprecationWarning)