diff options
Diffstat (limited to 'Biz/Que')
-rwxr-xr-x | Biz/Que/Client.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Biz/Que/Client.py b/Biz/Que/Client.py index 6248a79..4070cdd 100755 --- a/Biz/Que/Client.py +++ b/Biz/Que/Client.py @@ -23,11 +23,12 @@ DELAY = 3 BACKOFF = 1 LOGLEVEL = logging.ERROR -LOG = logging.basicConfig( +logging.basicConfig( format="%(asctime)s: %(levelname)s: %(message)s", level=LOGLEVEL, datefmt="%Y.%m.%d..%H.%M.%S", ) +LOG = logging.getLogger(__name__) def auth(args: argparse.Namespace) -> str | None: |