summaryrefslogtreecommitdiffstats
path: root/src/python/openlmi/common
diff options
context:
space:
mode:
Diffstat (limited to 'src/python/openlmi/common')
-rw-r--r--src/python/openlmi/common/cmpi_logging.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/python/openlmi/common/cmpi_logging.py b/src/python/openlmi/common/cmpi_logging.py
index aa9cd71..3e59882 100644
--- a/src/python/openlmi/common/cmpi_logging.py
+++ b/src/python/openlmi/common/cmpi_logging.py
@@ -114,7 +114,8 @@ def trace_function(func):
logger.log(TRACE_WARNING, "%s.%s threw exception %s",
func.__module__, func.__name__, str(exc))
raise
- logger.log(TRACE_VERBOSE, "Exiting %s", func.__name__)
+ logger.log(TRACE_VERBOSE, "Exiting %s.%s",
+ func.__module__, func.__name__)
return ret
helper_func.__name__ = func.__name__
helper_func.__doc__ = func.__doc__