Skip to content
This repository was archived by the owner on Jun 23, 2023. It is now read-only.

Commit 300ac84

Browse files
committed
Don't set log field by default.
1 parent 1c7f6f0 commit 300ac84

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
//2330
1+
//2345
22
//
33
// This code was generated by a tool. Any changes made manually will be lost
44
// the next time this code is regenerated.
55
//
66

77
using System.Reflection;
88

9-
[assembly: AssemblyFileVersion("1.8.0.2330")]
10-
[assembly: AssemblyVersion("1.8.0.2330")]
9+
[assembly: AssemblyFileVersion("1.9.1.2345")]
10+
[assembly: AssemblyVersion("1.9.1.2345")]

EssentialsPlugin/AssemblyFileVersion.tt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@
2929

3030
using System.Reflection;
3131

32-
[assembly: AssemblyFileVersion("1.8.0.<#= revisionNumber #>")]
33-
[assembly: AssemblyVersion("1.8.0.<#= revisionNumber #>")]
32+
[assembly: AssemblyFileVersion("1.9.1.<#= revisionNumber #>")]
33+
[assembly: AssemblyVersion("1.9.1.<#= revisionNumber #>")]

EssentialsPlugin/ChatHandlers/ChatHandlerBase.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44

55
namespace EssentialsPlugin.ChatHandlers
66
{
7+
using System.IO;
78
using NLog;
9+
using NLog.Layouts;
810

911
public abstract class ChatHandlerBase
1012
{

EssentialsPlugin/Core.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ namespace EssentialsPlugin
3434

3535
public class Essentials : IPlugin, IChatEventHandler, IPlayerEventHandler, ICubeGridHandler, ICubeBlockEventHandler, ISectorEventHandler
3636
{
37-
private static readonly Logger Log = LogManager.GetLogger( "PluginLog" );
37+
public static Logger Log;
3838
#region Private Fields
3939
internal static Essentials Instance;
4040
private static string _pluginPath;

0 commit comments

Comments
 (0)