diff options
author | Tim Rozet <trozet@redhat.com> | 2018-04-05 09:23:32 -0400 |
---|---|---|
committer | Tim Rozet <trozet@redhat.com> | 2018-04-05 19:18:29 +0000 |
commit | 7cb09c12216425351b7e1274aa9aa735a4cbac78 (patch) | |
tree | 6f8c329bfccc55262e70ba9c8a30eee4a0849a9a | |
parent | 11db5368ece66aeb01c2b6c811ad5f0962bb75e7 (diff) |
Fixes log location for pyutils
Change-Id: I03cda65f58753fc5d55ea4ede78f7d5bd8b7bdce
Signed-off-by: Tim Rozet <trozet@redhat.com>
(cherry picked from commit 4d537d8b9edf67057cc28656583bbfb7dd489779)
-rw-r--r-- | apex/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apex/utils.py b/apex/utils.py index cea25fe9..56caaefe 100644 --- a/apex/utils.py +++ b/apex/utils.py @@ -91,7 +91,7 @@ def main(): args = util_parser.parse_args(sys.argv[1:]) os.makedirs(os.path.dirname('./apex_util.log'), exist_ok=True) formatter = '%(asctime)s %(levelname)s: %(message)s' - logging.basicConfig(filename='./apex_clean.log', + logging.basicConfig(filename='./apex_util.log', format=formatter, datefmt='%m/%d/%Y %I:%M:%S %p', level=logging.DEBUG) |