diff options
Diffstat (limited to 'dichroism/src/config.rs')
-rw-r--r-- | dichroism/src/config.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dichroism/src/config.rs b/dichroism/src/config.rs index 0dbc10e..2031ecc 100644 --- a/dichroism/src/config.rs +++ b/dichroism/src/config.rs @@ -10,7 +10,7 @@ use toml::from_str; pub static CONFIG_INSTANCE: Lazy<Config> = Lazy::new(|| { Config::from_toml().unwrap_or_else(|e| { - eprintln!("Error: {}", e.to_string()); + eprintln!("Error parsing config: {}", e.to_string()); std::process::exit(1); }) }); |