From 22294a57aac371494ba138cbfb3c62de495258a0 Mon Sep 17 00:00:00 2001 From: goat <16760685+goaaats@users.noreply.github.com> Date: Wed, 31 Mar 2021 17:04:59 +0200 Subject: [PATCH] refactor: new code style in PluginLog.cs --- Dalamud/Plugin/PluginLog.cs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Dalamud/Plugin/PluginLog.cs b/Dalamud/Plugin/PluginLog.cs index 62bc757b1..ef1d3c78e 100644 --- a/Dalamud/Plugin/PluginLog.cs +++ b/Dalamud/Plugin/PluginLog.cs @@ -1,11 +1,15 @@ -using Serilog; -using Serilog.Events; using System; using System.Diagnostics; using System.Reflection; +using Serilog; +using Serilog.Events; + namespace Dalamud.Plugin { + /// + /// Class offering various static methods to allow for logging in plugins. + /// public static class PluginLog { #region "Log" prefixed Serilog style methods