Adding filename to logging message format for troubleshooting purpose

Change-Id: I5edd13d2a2c06f844bef1595e045208f53af4e71
This commit is contained in:
pd2839 2018-12-26 10:20:09 -06:00 committed by PRATEEK REDDY DODDA
parent 307f1318c4
commit 87fc068596
1 changed files with 1 additions and 1 deletions

View File

@ -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):