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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
|
using System;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
using StardewModdingAPI.Framework;
namespace StardewModdingAPI
{
/// <summary>A singleton which logs messages to the SMAPI console and log file.</summary>
public static class Log
{
/*********
** Properties
*********/
/// <summary>A pseudorandom number generator used to generate log files.</summary>
private static readonly Random Random = new Random();
/// <summary>The underlying log writer.</summary>
private static readonly LogWriter Writer = new LogWriter(Constants.LogPath);
/*********
** Public methods
*********/
/****
** Exceptions
****/
/// <summary>Log an exception event.</summary>
/// <param name="sender">The event sender.</param>
/// <param name="e">The event arguments.</param>
public static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
{
Console.WriteLine("An exception has been caught");
File.WriteAllText(Path.Combine(Constants.LogDir, $"MODDED_ErrorLog.Log_{DateTime.UtcNow.Ticks}.txt"), e.ExceptionObject.ToString());
}
/// <summary>Log a thread exception event.</summary>
/// <param name="sender">The event sender.</param>
/// <param name="e">The event arguments.</param>
public static void Application_ThreadException(object sender, ThreadExceptionEventArgs e)
{
Console.WriteLine("A thread exception has been caught");
File.WriteAllText(Path.Combine(Constants.LogDir, $"MODDED_ErrorLog.Log_{Log.Random.Next(100000000, 999999999)}.txt"), e.Exception.ToString());
}
/****
** Synchronous logging
****/
/// <summary>Synchronously log a message to the console. NOTE: synchronous logging is discouraged; use asynchronous methods instead.</summary>
/// <param name="message">The message to log.</param>
/// <param name="color">The message color.</param>
public static void SyncColour(object message, ConsoleColor color)
{
Log.PrintLog(new LogInfo(message?.ToString(), color));
}
/****
** Asynchronous logging
****/
/// <summary>Asynchronously log a message to the console with the specified color.</summary>
/// <param name="message">The message to log.</param>
/// <param name="color">The message color.</param>
public static void AsyncColour(object message, ConsoleColor color)
{
Task.Run(() => { Log.PrintLog(new LogInfo(message?.ToString(), color)); });
}
/// <summary>Asynchronously log a message to the console.</summary>
/// <param name="message">The message to log.</param>
public static void Async(object message)
{
Log.AsyncColour(message?.ToString(), ConsoleColor.Gray);
}
/// <summary>Asynchronously log a red message to the console.</summary>
/// <param name="message">The message to log.</param>
public static void AsyncR(object message)
{
Log.AsyncColour(message?.ToString(), ConsoleColor.Red);
}
/// <summary>Asynchronously log an orange message to the console.</summary>
/// <param name="message">The message to log.</param>
public static void AsyncO(object message)
{
Log.AsyncColour(message.ToString(), ConsoleColor.DarkYellow);
}
/// <summary>Asynchronously log a yellow message to the console.</summary>
/// <param name="message">The message to log.</param>
public static void AsyncY(object message)
{
Log.AsyncColour(message?.ToString(), ConsoleColor.Yellow);
}
/// <summary>Asynchronously log a green message to the console.</summary>
/// <param name="message">The message to log.</param>
public static void AsyncG(object message)
{
Log.AsyncColour(message?.ToString(), ConsoleColor.Green);
}
/// <summary>Asynchronously log a cyan message to the console.</summary>
/// <param name="message">The message to log.</param>
public static void AsyncC(object message)
{
Log.AsyncColour(message?.ToString(), ConsoleColor.Cyan);
}
/// <summary>Asynchronously log a magenta message to the console.</summary>
/// <param name="message">The message to log.</param>
public static void AsyncM(object message)
{
Log.AsyncColour(message?.ToString(), ConsoleColor.Magenta);
}
/// <summary>Asynchronously log a warning to the console.</summary>
/// <param name="message">The message to log.</param>
public static void Warning(object message)
{
Log.AsyncY("[WARN] " + message);
}
/// <summary>Asynchronously log an error to the console.</summary>
/// <param name="message">The message to log.</param>
public static void Error(object message)
{
Log.AsyncR("[ERROR] " + message);
}
/// <summary>Asynchronously log a success message to the console.</summary>
/// <param name="message">The message to log.</param>
public static void Success(object message)
{
Log.AsyncG(message);
}
/// <summary>Asynchronously log an info message to the console.</summary>
/// <param name="message">The message to log.</param>
public static void Info(object message)
{
Log.AsyncY(message);
}
/// <summary>Asynchronously log a debug message to the console.</summary>
/// <param name="message">The message to log.</param>
public static void Debug(object message)
{
Log.AsyncColour(message, ConsoleColor.DarkGray);
}
/// <summary>Asynchronously log a message to the file that's not shown in the console.</summary>
/// <param name="message">The message to log.</param>
internal static void LogToFile(string message)
{
Task.Run(() => { Log.PrintLog(new LogInfo(message) { PrintConsole = false }); });
}
/*********
** Private methods
*********/
/// <summary>Write a message to the log.</summary>
/// <param name="message">The message to write.</param>
private static void PrintLog(LogInfo message)
{
Log.Writer.WriteToLog(message);
}
}
}
|