From 722f24356beeac11697d0456b86daa06744d9058 Mon Sep 17 00:00:00 2001 From: Eric Torres Date: Mon, 28 Jan 2019 10:46:27 -0800 Subject: [PATCH] Fix wrong logging formatter attribute --- bin/delpkg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/delpkg b/bin/delpkg index 23e2f3a..69f5155 100644 --- a/bin/delpkg +++ b/bin/delpkg @@ -20,7 +20,7 @@ REPO_REMOVE_CMD = '/usr/bin/repo-remove' DB_EXT = 'db.tar.xz' # ========== Logging setup ========== -console_formatter = logging.Formatter('==> %(level)s %(message)s') +console_formatter = logging.Formatter('==> %(levelname)s %(message)s') syslog = logging.getLogger(__name__) syslog.setLevel(logging.DEBUG)