File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -352,7 +352,7 @@ async def _watch_scan_codes_debug(self) -> None:
352
352
| asyncinotify .Mask .OPEN ,
353
353
)
354
354
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 } " )
356
356
357
357
async def _watch_scan_codes (self ) -> None :
358
358
with asyncinotify .Inotify () as inotify :
@@ -388,7 +388,7 @@ async def _watch_destination_debug(self) -> None:
388
388
| asyncinotify .Mask .OPEN ,
389
389
)
390
390
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 } " )
392
392
393
393
async def _watch_destination (self ) -> None :
394
394
with asyncinotify .Inotify () as inotify :
@@ -437,7 +437,7 @@ async def _watch_sources_debug(self) -> None:
437
437
| asyncinotify .Mask .OPEN ,
438
438
)
439
439
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 } " )
441
441
442
442
async def _watch_sources (self ) -> None :
443
443
with asyncinotify .Inotify () as inotify :
You can’t perform that action at this time.
0 commit comments