From a55d68a828dfca07f512fa9573caa3e630a3f8b0 Mon Sep 17 00:00:00 2001 From: pdxlocations Date: Thu, 3 Apr 2025 21:26:11 -0700 Subject: [PATCH] change debug level --- contact/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contact/__main__.py b/contact/__main__.py index 20d2159..c075de2 100644 --- a/contact/__main__.py +++ b/contact/__main__.py @@ -42,7 +42,7 @@ if os.environ.get("COLORTERM") == "gnome-terminal": # Run `tail -f client.log` in another terminal to view live logging.basicConfig( filename=config.log_file_path, - level=logging.DEBUG, # DEBUG, INFO, WARNING, ERROR, CRITICAL) + level=logging.INFO, # DEBUG, INFO, WARNING, ERROR, CRITICAL) format="%(asctime)s - %(levelname)s - %(message)s" )