Skip to content

Commit ba75b82

Browse files
committed
Better print event
1 parent c456041 commit ba75b82

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scan_to_paperless/status.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ async def _watch_scan_codes_debug(self) -> None:
352352
| asyncinotify.Mask.OPEN,
353353
)
354354
async for event in inotify:
355-
print(f"Watch event on folder {self._codes_folder}: {event}")
355+
print(f"Watch event on folder {self._codes_folder}: {event.path} - {event.mask}")
356356

357357
async def _watch_scan_codes(self) -> None:
358358
with asyncinotify.Inotify() as inotify:
@@ -388,7 +388,7 @@ async def _watch_destination_debug(self) -> None:
388388
| asyncinotify.Mask.OPEN,
389389
)
390390
async for event in inotify:
391-
print(f"Watch event on folder {self._consume_folder}: {event}")
391+
print(f"Watch event on folder {self._consume_folder}: {event.path} - {event.mask}")
392392

393393
async def _watch_destination(self) -> None:
394394
with asyncinotify.Inotify() as inotify:
@@ -437,7 +437,7 @@ async def _watch_sources_debug(self) -> None:
437437
| asyncinotify.Mask.OPEN,
438438
)
439439
async for event in inotify:
440-
print(f"Watch event on folder {self._source_folder}: {event}")
440+
print(f"Watch event on folder {self._source_folder}: {event.path} - {event.mask}")
441441

442442
async def _watch_sources(self) -> None:
443443
with asyncinotify.Inotify() as inotify:

0 commit comments

Comments
 (0)