- Fix main.rs: app_lib crate name was wrong, should be robin_lib - Add log::info! on pattern load success/failure — startup was completely silent making smoke testing and production diagnosis impossible - Log pattern count and dual-boot supplement count on load - Log matched pattern id on every notification dispatch - These messages appear in ~/.local/share/tech.circuitforge.robin/logs/Robin.log
6 lines
181 B
Rust
6 lines
181 B
Rust
// Prevents additional console window on Windows in release, DO NOT REMOVE!!
|
|
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
|
|
|
|
fn main() {
|
|
robin_lib::run();
|
|
}
|