From 83365da0599b0e178a61ec8e851fda96bd3e79e1 Mon Sep 17 00:00:00 2001 From: sonic <156506053+sonic998@users.noreply.github.com> Date: Sun, 18 Aug 2024 19:55:26 +0200 Subject: [PATCH] Update Program.cs --- src/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Program.cs b/src/Program.cs index fd21d9f..d20a830 100644 --- a/src/Program.cs +++ b/src/Program.cs @@ -16,7 +16,7 @@ bool gameOpenEnable = builder.Configuration.GetSection("GamePromptOptions").GetV string ClientPath = builder.Configuration.GetSection("GamePromptOptions").GetValue("ClientPath"); // shows that the server is starting -ConsoleFunctions.log("Server Start"); +Console.WriteLine("Server is starting"); builder.Services.Configure(builder.Configuration.GetSection("AssetServer")); builder.Services.Configure(builder.Configuration.GetSection("ApiServer")); @@ -74,7 +74,7 @@ app.MapControllers(); // Shows message that server is running -ConsoleFunctions.log("Server Running"); +ConsoleFunctions.log("Server Running", assetPort); //asks the user to automally open the game client if (gameOpenEnable == true)