Delete src/Util/VerboseLogging.cs

This commit is contained in:
sonic 2024-08-18 19:40:45 +02:00 committed by GitHub
parent 07c1438658
commit 08ea9e3ba8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,16 +0,0 @@
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");
}
}