summaryrefslogtreecommitdiff
path: root/kvmd
diff options
context:
space:
mode:
authorDevaev Maxim <[email protected]>2020-09-05 14:41:46 +0300
committerDevaev Maxim <[email protected]>2020-09-05 14:41:46 +0300
commit2b8e323a7e7b48c86f26d7b89601e2ec78771a28 (patch)
treed71c5eed4cbed8b9217b96707c3e8189db8b3795 /kvmd
parent54fe569ad112df4d18c672d903985d994bda81d7 (diff)
don't report inotify mask
Diffstat (limited to 'kvmd')
-rw-r--r--kvmd/inotify.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/kvmd/inotify.py b/kvmd/inotify.py
index cdded981..422f3a0a 100644
--- a/kvmd/inotify.py
+++ b/kvmd/inotify.py
@@ -235,7 +235,7 @@ class Inotify:
def watch(self, path: str, mask: int) -> None:
path = os.path.normpath(path)
assert path not in self.__wd_by_path, path
- get_logger().info("Watching for %s: %s", path, InotifyMask.to_string(mask))
+ get_logger().info("Watching for %s", path)
wd = _inotify_check(_inotify_add_watch(self.__fd, _fs_encode(path), mask))
self.__wd_by_path[path] = wd
self.__path_by_wd[wd] = path