diff options
| author | Fuwn <[email protected]> | 2021-05-06 21:34:48 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-05-06 21:34:48 +0000 |
| commit | 923a57db27e09345e72b871691c5ea9dc56dc305 (patch) | |
| tree | 29ec605b087825ca0621bfcdad25967aba60a4ad /src | |
| parent | build(make): create interactive mode docker run task (diff) | |
| download | whirl-923a57db27e09345e72b871691c5ea9dc56dc305.tar.xz whirl-923a57db27e09345e72b871691c5ea9dc56dc305.zip | |
refactor(config): verbosity
Diffstat (limited to 'src')
| -rw-r--r-- | src/config/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config/mod.rs b/src/config/mod.rs index 66a9388..ef86810 100644 --- a/src/config/mod.rs +++ b/src/config/mod.rs @@ -37,7 +37,7 @@ impl Config { pub fn get() -> Config { return if let Err(why) = Self::load() { error!( - "unable to load configuration file, reverting to default: {}", + "unable to load configuration file, reverting to default value: {}", why ); Self::default() |