From 0278873fb5a20ecceb5d375a8f62fa3a2913d12a Mon Sep 17 00:00:00 2001 From: Reinier van der Leer Date: Mon, 16 Oct 2023 15:50:44 -0700 Subject: [PATCH] Remove double milliseconds field from AutoGPT log format --- autogpts/autogpt/autogpt/logs/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogpts/autogpt/autogpt/logs/config.py b/autogpts/autogpt/autogpt/logs/config.py index dc3a2578..21afc107 100644 --- a/autogpts/autogpt/autogpt/logs/config.py +++ b/autogpts/autogpt/autogpt/logs/config.py @@ -24,7 +24,7 @@ ERROR_LOG_FILE = "error.log" SIMPLE_LOG_FORMAT = "%(asctime)s %(levelname)s %(title)s%(message)s" DEBUG_LOG_FORMAT = ( - "%(asctime)s.%(msecs)03d %(levelname)s %(filename)s:%(lineno)d" + "%(asctime)s %(levelname)s %(filename)s:%(lineno)d" " %(title)s%(message)s" )