summaryrefslogtreecommitdiff
path: root/src/StardewModdingAPI/LogWriter.cs
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2017-04-05 14:55:46 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2017-04-05 14:55:46 -0400
commitdbb9bd84306830456032778fc11fb9a34dd140c7 (patch)
tree0219cab065bfffbbbb9b048b6a30044f510be2c5 /src/StardewModdingAPI/LogWriter.cs
parent9c9833c9086b758589dafee10243e3bf47e12d73 (diff)
parent4675da0600edf6781cd740549ad0a175b606fc1e (diff)
downloadSMAPI-dbb9bd84306830456032778fc11fb9a34dd140c7.tar.gz
SMAPI-dbb9bd84306830456032778fc11fb9a34dd140c7.tar.bz2
SMAPI-dbb9bd84306830456032778fc11fb9a34dd140c7.zip
Merge branch 'develop-1.9' into stable
Diffstat (limited to 'src/StardewModdingAPI/LogWriter.cs')
-rw-r--r--src/StardewModdingAPI/LogWriter.cs66
1 files changed, 0 insertions, 66 deletions
diff --git a/src/StardewModdingAPI/LogWriter.cs b/src/StardewModdingAPI/LogWriter.cs
deleted file mode 100644
index e22759a7..00000000
--- a/src/StardewModdingAPI/LogWriter.cs
+++ /dev/null
@@ -1,66 +0,0 @@
-using System;
-using StardewModdingAPI.Framework;
-
-namespace StardewModdingAPI
-{
- /// <summary>A log writer which queues messages for output, and periodically flushes them to the console and log file.</summary>
- /// <remarks>Only one instance should be created.</remarks>
- [Obsolete("This class is internal and should not be referenced outside SMAPI. It will no longer be exposed in a future version.")]
- public class LogWriter
- {
- /*********
- ** Properties
- *********/
- /// <summary>Manages reading and writing to the log file.</summary>
- private readonly LogFileManager LogFile;
-
-
- /*********
- ** Public methods
- *********/
- /// <summary>Construct an instance.</summary>
- /// <param name="logFile">Manages reading and writing to the log file.</param>
- internal LogWriter(LogFileManager logFile)
- {
- this.WarnDeprecated();
- this.LogFile = logFile;
- }
-
- /// <summary>Queue a message for output.</summary>
- /// <param name="message">The message to log.</param>
- public void WriteToLog(string message)
- {
- this.WarnDeprecated();
- this.WriteToLog(new LogInfo(message));
- }
-
- /// <summary>Queue a message for output.</summary>
- /// <param name="message">The message to log.</param>
- public void WriteToLog(LogInfo message)
- {
- this.WarnDeprecated();
- string output = $"[{message.LogTime}] {message.Message}";
- if (message.PrintConsole)
- {
- if (Monitor.ConsoleSupportsColor)
- {
- Console.ForegroundColor = message.Colour;
- Console.WriteLine(message);
- Console.ResetColor();
- }
- else
- Console.WriteLine(message);
- }
- this.LogFile.WriteLine(output);
- }
-
- /*********
- ** Private methods
- *********/
- /// <summary>Raise a deprecation warning.</summary>
- private void WarnDeprecated()
- {
- Program.DeprecationManager.Warn($"the {nameof(LogWriter)} class", "1.0", DeprecationLevel.PendingRemoval);
- }
- }
-} \ No newline at end of file