[processing tests] Improve test debug messages

This commit is contained in:
Matthias Kuhn 2016-03-15 11:05:03 +01:00
parent 0e690fc701
commit 01cc455d2d

View File

@ -2,7 +2,7 @@
""" """
*************************************************************************** ***************************************************************************
GeoAlgorithmExecutionException.py GeoAlgorithm.py
--------------------- ---------------------
Date : August 2012 Date : August 2012
Copyright : (C) 2012 by Victor Olaya Copyright : (C) 2012 by Victor Olaya
@ -206,8 +206,10 @@ class GeoAlgorithm:
self.convertUnsupportedFormats(progress) self.convertUnsupportedFormats(progress)
self.runPostExecutionScript(progress) self.runPostExecutionScript(progress)
except GeoAlgorithmExecutionException as gaee: except GeoAlgorithmExecutionException as gaee:
lines = [self.tr('Uncaught error while executing algorithm')]
lines.append(traceback.format_exc())
ProcessingLog.addToLog(ProcessingLog.LOG_ERROR, gaee.msg) ProcessingLog.addToLog(ProcessingLog.LOG_ERROR, gaee.msg)
raise gaee raise GeoAlgorithmExecutionException(gaee.msg, lines, gaee)
except Exception as e: except Exception as e:
# If something goes wrong and is not caught in the # If something goes wrong and is not caught in the
# algorithm, we catch it here and wrap it # algorithm, we catch it here and wrap it