diff options
author | Devaev Maxim <[email protected]> | 2020-09-05 14:41:46 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2020-09-05 14:41:46 +0300 |
commit | 2b8e323a7e7b48c86f26d7b89601e2ec78771a28 (patch) | |
tree | d71c5eed4cbed8b9217b96707c3e8189db8b3795 /kvmd | |
parent | 54fe569ad112df4d18c672d903985d994bda81d7 (diff) |
don't report inotify mask
Diffstat (limited to 'kvmd')
-rw-r--r-- | kvmd/inotify.py | 2 |
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 |