make log writer internal (not meant for use outside SMAPI)

This commit is contained in:
Jesse Plamondon-Willard 2016-11-04 20:01:45 -04:00
parent 5fd708e43f
commit 4c7329d75e
4 changed files with 6 additions and 4 deletions

View File

@ -3,10 +3,10 @@ using System.Collections.Concurrent;
using System.IO;
using System.Linq;
namespace StardewModdingAPI
namespace StardewModdingAPI.Framework
{
/// <summary>A log writer which queues messages for output, and periodically flushes them to the console and log file.</summary>
public class LogWriter
internal class LogWriter
{
/*********
** Properties
@ -80,6 +80,7 @@ namespace StardewModdingAPI
}
}
/*********
** Private methods
*********/

View File

@ -2,6 +2,7 @@ using System;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
using StardewModdingAPI.Framework;
namespace StardewModdingAPI
{

View File

@ -198,8 +198,8 @@
<Compile Include="Inheritance\ChangeType.cs" />
<Compile Include="Inheritance\ItemStackChange.cs" />
<Compile Include="Log.cs" />
<Compile Include="Logger.cs" />
<Compile Include="LogWriter.cs" />
<Compile Include="LogInfo.cs" />
<Compile Include="Framework\LogWriter.cs" />
<Compile Include="Manifest.cs" />
<Compile Include="Mod.cs" />
<Compile Include="Program.cs" />