This repository has been archived on 2025-06-05. You can view files and clone it, but cannot push or open issues or pull requests.
2025-05-02 06:46:59 -07:00

14 lines
256 B
C#

namespace RobloxLegacy.Utilities;
public static class Logger
{
public static void Info(string msg)
{
Console.Write($"[+] {msg}\n");
}
public static void Error(string msg)
{
Console.Write($"[!] {msg}\n");
}
}