Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added more logging to track raw events before processing #24

Merged
merged 2 commits into from
Dec 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "notifykit_lib"
version = "0.0.3"
version = "0.0.4"
edition = "2021"
license = "A toolkit for building applications watching filesystem changes"
homepage = "https://github.com/roma-glushko/notifykit"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "notifykit"
version = "0.0.3"
version = "0.0.4"
description = "A modern efficient Python toolkit for building applications that need to watch filesystem changes"
authors = [
{name = "Roman Glushko", email = "roman.glushko.m@gmail.com"},
Expand Down
6 changes: 5 additions & 1 deletion src/watcher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ impl Watcher {
move |e: Result<Event, notify::Error>| {
let mut event_processor = processor_c.lock().unwrap();

if debug {
println!("raw event: {:?}", e);
}

match e {
Ok(e) => event_processor.add_event(e),
Err(e) => event_processor.add_error(e),
Expand Down Expand Up @@ -161,7 +165,7 @@ impl Watcher {
}

if !raw_events.is_empty() && self.debug {
println!("raw_events: {:?}", raw_events);
println!("processed events: {:?}", raw_events);
}

if !errors.is_empty() {
Expand Down
Loading