diff options
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()?; |