Index: shared/scripts/configuration/utility.py =================================================================== diff -u -rc6274593f3f5a607595b95f0243313a6cf32d599 -rb3524cb74d96f70808818d97e2e84957aa11e684 --- shared/scripts/configuration/utility.py (.../utility.py) (revision c6274593f3f5a607595b95f0243313a6cf32d599) +++ shared/scripts/configuration/utility.py (.../utility.py) (revision b3524cb74d96f70808818d97e2e84957aa11e684) @@ -208,4 +208,12 @@ counter = counter + 1 +def logErrorDetails(error_message): + """ + Logs the execution details. + """ + excep_type, excep_val, excep_tb = sys.exc_info() + test.log(str(excep_val)) + test.fail(error_message + ", " + "Exception Type: " + str(excep_type) + "\n" + str(excep_tb)) +