Make logfile a public getter

This commit is contained in:
Lucas Nicodemus 2015-02-22 20:16:03 -07:00
parent ae2854ce05
commit 9e2ff2e2a2

View file

@ -37,7 +37,7 @@ namespace TShockAPI
public static class Log
{
private static string _filename;
public static string _filename { get; private set; }
private static LogLevel _logLevel;
private static StreamWriter _logWriter;