From dc92cc0319f10b169f2a79ce3618548553b0c4e0 Mon Sep 17 00:00:00 2001 From: Michael VanOverbeek Date: Sun, 31 Oct 2021 13:40:59 -0400 Subject: [PATCH] Remove that return statement I forgot to remove. --- ProjectLighthouse/Logging/LighthouseFileLogger.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/ProjectLighthouse/Logging/LighthouseFileLogger.cs b/ProjectLighthouse/Logging/LighthouseFileLogger.cs index 1305986f..82863a72 100644 --- a/ProjectLighthouse/Logging/LighthouseFileLogger.cs +++ b/ProjectLighthouse/Logging/LighthouseFileLogger.cs @@ -9,7 +9,6 @@ namespace LBPUnion.ProjectLighthouse.Logging { public override void Send(LoggerLine line) { - return; FileHelper.EnsureDirectoryCreated(logsDirectory); File.AppendAllText(Path.Combine(logsDirectory, line.LoggerLevel + ".log"), line.LineData + "\n");