Skip to content

Commit

Permalink
improves log format
Browse files Browse the repository at this point in the history
  • Loading branch information
shikokuchuo committed Feb 2, 2025
1 parent 670c3cb commit e85285a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/watcher.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ static void process_events(fsw_cevent const *const events, const unsigned int ev
for (unsigned int i = 0; i < event_num; i++) {
for (unsigned int j = 0; j < events[i].flags_num; j++) {
get_event_flag_name(events[i].flags[j], buf);
Wprintf("Event: %s\n Flag: %s\n", events[i].path, buf);
Wprintf("%s: %s\n", buf, events[i].path);
}
}
}
Expand Down

0 comments on commit e85285a

Please sign in to comment.