feat(daemon): display error message for config errors

main
Angelo Fallaria 2 years ago
parent 9567883fed
commit 90cb0e4b93

@ -94,7 +94,7 @@ pub fn main() {
let hotkeys = match config::load(config_file_path) {
Err(e) => {
log::error!("Error: failed to parse config file at line {:#?}", e);
log::error!("Config Error: {}", e);
exit(1);
}
Ok(out) => out,

Loading…
Cancel
Save