585101
From 52019b19caaf383daa5f2f0437e0c9e262adb45e Mon Sep 17 00:00:00 2001
585101
From: Vojtech Trefny <vtrefny@redhat.com>
585101
Date: Mon, 13 Dec 2021 14:18:12 +0100
585101
Subject: [PATCH] Fix log message for the LVM devices filter
585101
585101
---
585101
 blivet/devicelibs/lvm.py | 4 ++--
585101
 1 file changed, 2 insertions(+), 2 deletions(-)
585101
585101
diff --git a/blivet/devicelibs/lvm.py b/blivet/devicelibs/lvm.py
585101
index 3ab1540b..bbde6303 100644
585101
--- a/blivet/devicelibs/lvm.py
585101
+++ b/blivet/devicelibs/lvm.py
585101
@@ -133,14 +133,14 @@ def needs_config_refresh(fn):
585101
 @needs_config_refresh
585101
 def lvm_devices_add(path):
585101
     """ Add a device (PV) to the list of devices LVM is allowed to use """
585101
-    log.debug("lvm filter: device %s added to the list of allowed devices")
585101
+    log.debug("lvm filter: device %s added to the list of allowed devices", path)
585101
     _lvm_devices.add(path)
585101
 
585101
 
585101
 @needs_config_refresh
585101
 def lvm_devices_remove(path):
585101
     """ Remove a device (PV) to the list of devices LVM is allowed to use """
585101
-    log.debug("lvm filter: device %s removed from the list of allowed devices")
585101
+    log.debug("lvm filter: device %s removed from the list of allowed devices", path)
585101
     try:
585101
         _lvm_devices.remove(path)
585101
     except KeyError:
585101
-- 
585101
2.34.1
585101