diff options
author | Linnnus <[email protected]> | 2024-10-02 09:23:17 +0200 |
---|---|---|
committer | Linnnus <[email protected]> | 2024-10-02 09:23:17 +0200 |
commit | 3783f68927a1a13c8ddcf96ffc3e78c06963414e (patch) | |
tree | 36e717c0589325c27a872e4bf2a80c14c6130fa4 /src/main.rs | |
parent | dbaf06284985617b3e6cabe04377f8bb34c2d378 (diff) |
Be more verbose when loading configuration
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index fefbca7..c67586d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -68,6 +68,7 @@ fn get_listener_from_systemd() -> io::Result<TokioUnixListener> { #[tokio::main] async fn main() -> Result<(), Box<dyn std::error::Error + Send + Sync>> { let config = load_config(); + println!("Using config: {:?}", config); let listener = get_listener_from_systemd()?; |