summaryrefslogtreecommitdiffstats
path: root/src/python
diff options
context:
space:
mode:
Diffstat (limited to 'src/python')
-rw-r--r--src/python/lmi/providers/JobManager.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/python/lmi/providers/JobManager.py b/src/python/lmi/providers/JobManager.py
index f285fe1..31deb3f 100644
--- a/src/python/lmi/providers/JobManager.py
+++ b/src/python/lmi/providers/JobManager.py
@@ -420,11 +420,11 @@ class Job(object):
self._execute(*(self._execargs), **(self._execkwargs))
except pywbem.CIMError, error:
LOG().trace_warn("Job.execute caught an CIMError %s", str(error))
- LOG().trace_verbose("traceback: %s", traceback.format_exc())
+ LOG().trace_info("traceback: %s", traceback.format_exc())
self.finish_method(Job.STATE_FAILED, error=error)
except Exception, ex:
LOG().trace_warn("Job.execute caught an Exception %s", str(ex))
- LOG().trace_verbose("traceback: %s", traceback.format_exc())
+ LOG().trace_info("traceback: %s", traceback.format_exc())
error = pywbem.CIMError(pywbem.CIM_ERR_FAILED, str(ex))
self.finish_method(Job.STATE_FAILED, error=error)