diff options
author | Tim Rozet <trozet@redhat.com> | 2018-04-05 09:23:32 -0400 |
---|---|---|
committer | Tim Rozet <trozet@redhat.com> | 2018-04-05 09:23:32 -0400 |
commit | 4d537d8b9edf67057cc28656583bbfb7dd489779 (patch) | |
tree | 6f8c329bfccc55262e70ba9c8a30eee4a0849a9a | |
parent | 382fa452e0c9a8189911f615416e1b24badaf5e4 (diff) |
Fixes log location for pyutils
Change-Id: I03cda65f58753fc5d55ea4ede78f7d5bd8b7bdce
Signed-off-by: Tim Rozet <trozet@redhat.com>
-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) |