From 133502e1adce578afce94600aa3225143580663f Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Sat, 20 Jan 2024 04:19:28 +0000 Subject: [PATCH] remove format, datefmt --- chapter12/loaves.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/chapter12/loaves.py b/chapter12/loaves.py index 4581471..3e034a7 100644 --- a/chapter12/loaves.py +++ b/chapter12/loaves.py @@ -3,11 +3,7 @@ from dataclasses import dataclass import numpy as np -logging.basicConfig( - level=logging.DEBUG, - format="%(asctime)s %(levelname)s %(message)s", - datefmt="%H:%M:%S", -) +logging.basicConfig(level=logging.DEBUG) logger = logging.getLogger(__name__)