sodoff/src/Util/VerboseLogging.cs
2024-08-18 11:35:14 +02:00

16 lines
442 B
C#

using Microsoft.AspNetCore.Mvc.Filters;
using Microsoft.AspNetCore.Mvc;
namespace sodoff.Utils;
public class VerboseLogging {
public static void log() {
Console.WriteLine("[INFO] Server is loading Assets");
Console.WriteLine("[INFO] Loading api");
}
public static void ServerStartedMessage()
{
Console.WriteLine("Server is running");
Console.WriteLine("You can run the game now");
}
}