mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-12 00:38:48 -07:00
16 lines
442 B
C#
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");
|
|
}
|
|
} |