diff options
author | Markus Lehtonen <markus.lehtonen@linux.intel.com> | 2016-09-29 17:28:07 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-10-01 21:45:56 +0100 |
commit | a235c1b7c2290c82e0c673c24f0af6b52883ecde (patch) | |
tree | e462291e78c55b12ab68222f787e628c6c5791b3 | |
parent | cbbe51f55f123678219b7a49ca80389d1c7e2a7e (diff) | |
download | poky-a235c1b7c2290c82e0c673c24f0af6b52883ecde.tar.gz |
scripts/buildstats-diff: make logger msg format a bit more readable
(From OE-Core rev: 49ae4382dd0a71f45989af3679bd35ce2bfa82f8)
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-x | scripts/buildstats-diff | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/buildstats-diff b/scripts/buildstats-diff index 3c6cb1e27c..c5c48d36b5 100755 --- a/scripts/buildstats-diff +++ b/scripts/buildstats-diff | |||
@@ -26,7 +26,7 @@ from datetime import datetime, timedelta, tzinfo | |||
26 | from operator import attrgetter | 26 | from operator import attrgetter |
27 | 27 | ||
28 | # Setup logging | 28 | # Setup logging |
29 | logging.basicConfig(level=logging.INFO) | 29 | logging.basicConfig(level=logging.INFO, format="%(levelname)s: %(message)s") |
30 | log = logging.getLogger() | 30 | log = logging.getLogger() |
31 | 31 | ||
32 | 32 | ||