From 3978c45b04f37fb3bb2b21dfd0ad710cd2b656bb Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Tue, 12 Mar 2019 18:52:37 -0400 Subject: [PATCH] spit out the events as raw as we can --- src/allmydata/windows/inotify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/allmydata/windows/inotify.py b/src/allmydata/windows/inotify.py index b36051690..5e29a00ec 100644 --- a/src/allmydata/windows/inotify.py +++ b/src/allmydata/windows/inotify.py @@ -154,6 +154,7 @@ class FileNotifyInformation(object): bytes = self._read_dword(pos+8) s = Event(self._read_dword(pos+4), self.data[pos+12 : pos+12+bytes].decode('utf-16-le')) + Message.log(message_type="fni", info=repr(s)) next_entry_offset = self._read_dword(pos) yield s @@ -310,7 +311,6 @@ class INotify(PollMixin): if self._check_stop(): return for info in fni: - # print info path = self._path.preauthChild(info.filename) # FilePath with Unicode path if info.action == FILE_ACTION_MODIFIED and path.isdir(): Message.log(