From 18c5524ce2da4b2b63e2941c38ae84e8229a2a74 Mon Sep 17 00:00:00 2001 From: Ethan O'Brien Date: Wed, 3 Jul 2024 12:28:57 -0500 Subject: [PATCH] Echo data path on startup --- .gitignore | 1 + src/main.rs | 1 + 2 files changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 84f77bd..d755072 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ webui/node_modules/ webui/dist/ Cargo.lock config.json +docker/data/ diff --git a/src/main.rs b/src/main.rs index 02ca3c2..a6875bf 100644 --- a/src/main.rs +++ b/src/main.rs @@ -233,6 +233,7 @@ async fn main() -> std::io::Result<()> { ).bind(("0.0.0.0", port))?.run(); println!("Server started: http://0.0.0.0:{}", port); + println!("Data path is set to {}", args.path); if args.https { println!("Note: gree is set to https mode. http requests will fail on jp clients."); }