We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48063d7 commit 63c79b8Copy full SHA for 63c79b8
src/main.rs
@@ -31,6 +31,7 @@ async fn main() -> IoResult<()> {
31
None => PathBuf::from("config.toml"),
32
};
33
let config = Config::parse(&config_path).expect("failed to parse config");
34
+ log::trace!("{:#?}", config);
35
let server_config = config.server.clone();
36
let paste_config = RwLock::new(config.paste.clone());
37
let (config_sender, config_receiver) = mpsc::channel::<Config>();
0 commit comments