Call log_method_call() in MultipathDevice.addParent() and
Device.setupParents()
---
storage/devices.py | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/storage/devices.py b/storage/devices.py
index d31ceae..ead7ae8 100644
--- a/storage/devices.py
+++ b/storage/devices.py
@@ -305,6 +305,7 @@ class Device(object):
def setupParents(self):
""" Run setup method of all parent devices. """
+ log_method_call(self, name=self.name, kids=self.kids)
for parent in self.parents:
parent.setup()