diff -r 908471b344ba -r c44692b53736 runtime/__init__.py --- a/runtime/__init__.py Tue Oct 02 15:52:11 2018 +0200 +++ b/runtime/__init__.py Tue Oct 02 15:56:09 2018 +0200 @@ -23,9 +23,8 @@ exp = sys.exc_info() if _PLCObjectSingleton is not None: _PLCObjectSingleton.LogMessage(0, msg + '\n'.join(traceback.format_exception(*exp))) - else: - print(msg) - traceback.print_exception(*exp) + print(msg) + traceback.print_exception(*exp) def CreatePLCObjectSingleton(*args): global _PLCObjectSingleton