diff --git a/translator/shell.py b/translator/shell.py index 1d67c2a4..cd441ce7 100644 --- a/translator/shell.py +++ b/translator/shell.py @@ -65,7 +65,10 @@ other required arguments. """ conf_file = ConfigProvider.get_translator_logging_file() -logging.config.fileConfig(conf_file) +try: + logging.config.fileConfig(conf_file) +except Exception: + pass log = logging.getLogger("heat-translator")