From aea34180e53ae181d79abc4b16dc28d1a4f4220f Mon Sep 17 00:00:00 2001 From: c0repwn3r Date: Fri, 21 Apr 2023 10:36:26 -0400 Subject: [PATCH] finish new build system --- server/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/main.rs b/server/src/main.rs index 49af17ab71be959df0c1c34f5ebdeaef814264ba..da66407a4aa6329db4e0fd298cd468f8a8b9625f 100644 --- a/server/src/main.rs +++ b/server/src/main.rs @@ -164,7 +164,7 @@ lazy_static! { async fn main() { simple_logger::init_with_level(Level::Debug).expect("Unable to start logging service"); - info!("StarKingdoms server (v: {}, build {})", env!("STK_VERSION"), env!("STK_BUILD")); + info!("StarKingdoms server (v: {}, build {}) - initializing", env!("STK_VERSION"), env!("STK_BUILD")); if std::env::var("STK_API_KEY").is_err() { error!("Unable to read the API key from STK_API_KEY. Ensure it is set, and has a valid value.");