expects the 'interfaces' key in GetSlivers - review logs to always mention module
[nodemanager.git] / plugins / rawdisk.py
index ad84761..e7b1006 100644 (file)
@@ -22,7 +22,7 @@ import logger
 import tools
 
 def start(options, config):
-    logger.log("rawdisk plugin starting up...")
+    logger.log("rawdisk: plugin starting up...")
 
 def get_unused_devices():
     devices = []
@@ -51,7 +51,7 @@ def get_unused_devices():
 
 def GetSlivers(data, config=None, plc=None):
     if 'slivers' not in data: 
-        logger.log("sliverauth: getslivers data lack's sliver information. IGNORING!")
+        logger.log_missing_data("rawdisk.GetSlivers",'slivers')
         return
 
     devices = get_unused_devices()
@@ -66,7 +66,7 @@ def GetSlivers(data, config=None, plc=None):
                         # should check whether its the proper type of device
                         continue
                     
-                    logger.log("Copying %s to %s" % (i, path))
+                    logger.log("rawdisk: Copying %s to %s" % (i, path))
                     try:
                         if os.path.exists(path):
                             os.unlink(path)