From 361b13342ef60b6aa0e3ad523fb2084c95881a31 Mon Sep 17 00:00:00 2001 From: indra Date: Fri, 18 Jan 2019 18:40:14 +0530 Subject: [PATCH] Added filename to logging message format for troubleshooting purpose This change is related to Maas Here are the Change ID's for other airship componets Shipyard- I09348ab7ac78700badcff557a82049660ac9f5c6 Airflow- If8fd5983fd589ddf07b960d38e0081cfb0237003 Deckhand- I2763ae7ea62e78c9dd89659f97b149ab000d0ebb Drydock- I88c8cd6a56771cf6e97cfa874dc63963e247a890 Armada- I5edd13d2a2c06f844bef1595e045208f53af4e71 Promenade- Ibbbf65ad815fb8c9e6ede468eda12bec863bc474 Change-Id: I61e4daaac5b6c01dbe59b6d11e343c2b77483cbf --- tools/image_tags.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/image_tags.py b/tools/image_tags.py index 9bdab59..f3d0587 100644 --- a/tools/image_tags.py +++ b/tools/image_tags.py @@ -20,7 +20,7 @@ import sys LOG = logging.getLogger(__name__) -LOG_FORMAT = '%(asctime)s %(levelname)-8s %(name)s:%(funcName)s [%(lineno)3d] %(message)s' # noqa +LOG_FORMAT = '%(asctime)s %(levelname)-8s %(name)s:%(filename)s:%(lineno)3d:%(funcName)s %(message)s' # noqa class TagGenExeception(Exception):