-
Notifications
You must be signed in to change notification settings - Fork 17
/
Log.cs
33 lines (28 loc) · 774 Bytes
/
Log.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
using StardewModdingAPI;
using System;
namespace StardewValleyMP
{
class Log
{
public static void trace(String str)
{
MultiplayerMod.instance.Monitor.Log(str, LogLevel.Trace);
}
public static void debug(String str)
{
MultiplayerMod.instance.Monitor.Log(str, LogLevel.Debug);
}
public static void info(String str)
{
MultiplayerMod.instance.Monitor.Log(str, LogLevel.Info);
}
public static void warn(String str)
{
MultiplayerMod.instance.Monitor.Log(str, LogLevel.Warn);
}
public static void error(String str)
{
MultiplayerMod.instance.Monitor.Log(str, LogLevel.Error);
}
}
}