diff -r a737e240f27b -r 366c7c6582d8 eric6/Debugger/ExceptionLogger.py --- a/eric6/Debugger/ExceptionLogger.py Sat Apr 18 16:07:05 2020 +0200 +++ b/eric6/Debugger/ExceptionLogger.py Sat Apr 18 16:08:05 2020 +0200 @@ -103,9 +103,12 @@ return if exceptionMessage == '': - itm.setText(0, "{0}".format(exceptionType)) + text = "{0}".format(exceptionType) else: - itm.setText(0, "{0}, {1}".format(exceptionType, exceptionMessage)) + text = "{0}, {1}".format(exceptionType, exceptionMessage) + + itm.setText(0, text) + itm.setToolTip(0, text) # now add the call stack, most recent call first for entry in stackTrace: