summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/python/lmi/providers/cmpi_logging.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/lmi/providers/cmpi_logging.py b/src/python/lmi/providers/cmpi_logging.py
index 4d780df..c1e29c9 100644
--- a/src/python/lmi/providers/cmpi_logging.py
+++ b/src/python/lmi/providers/cmpi_logging.py
@@ -131,7 +131,7 @@ class CMPILogHandler(logging.Handler):
elif record.levelno >= logging.INFO:
self.cmpi_logger.log_info(msg)
elif record.levelno >= logging.DEBUG:
- self.cmpi_logger.log_debug(record.filename, msg)
+ self.cmpi_logger.log_debug(msg)
elif record.levelno >= TRACE_WARNING:
self.cmpi_logger.trace_warn(record.filename, msg)
elif record.levelno >= TRACE_INFO: