We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa1c8b3 commit 34f77dfCopy full SHA for 34f77df
1 file changed
src/main.rs
@@ -2,7 +2,7 @@ use clap::Parser;
2
use cli::Command;
3
use server::config::Config;
4
use std::env;
5
-use tracing::{debug, info};
+use tracing::{debug, info, warn};
6
7
mod cli;
8
mod dbmgr;
@@ -30,6 +30,7 @@ async fn main() -> Result<(), error::Error> {
30
debug!("Arguments: {args:?}");
31
32
if first_run {
33
+ warn!("No configuration found, creating one");
34
info!("Configuration initialized at {}", config_path.display());
35
return Ok(());
36
}
0 commit comments