log-watcher 0.2.1

Real-time log file monitoring with pattern highlighting and desktop notifications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod cli;
pub mod config;
pub mod highlighter;
pub mod matcher;
pub mod notifier;
pub mod utils;
pub mod watcher;

// 🔐 SSH key signing enabled - much more reliable!

pub use cli::Args;
pub use config::Config;
pub use highlighter::Highlighter;
pub use matcher::Matcher;
pub use notifier::Notifier;
pub use watcher::LogWatcher;