logwatcher icon indicating copy to clipboard operation
logwatcher copied to clipboard

Log Watcher Library

Results 9 logwatcher issues
Sort by recently updated
recently updated
newest added

https://github.com/aravindavk/logwatcher/blob/3ff858cef9dd50a2ac9a6715f5a62c7e64d2b39a/src/lib.rs#L68 I think a print in a library should generally be avoided. If you think you're user might care about a log rotation, you should have it be an event...

This new feature helps to start to tail within' the file from a specific location such as: - beginning of the file - an offset - the end of the...

Thanks a lot. I found your crate works on MacOS without any issue.

Could you please update the version on crates.io? The only version available there is the initial commit, missing the closure changes

Fn prevents the closure from mutating captured variables. Could we change it to FnMut to make the API easier to use in cases where we want to do this. This...

`pub fn register(filename: String, start_pos: u64) -> Result {}`

I'm currently watching this nginx log file, and there seems to be an issue where it sometimes only captures parts of the line, and with the next entry capturing the...