diff --git a/Dalamud/Logging/Internal/ModuleLog.cs b/Dalamud/Logging/Internal/ModuleLog.cs
index bb5af4ffe..00173b09d 100644
--- a/Dalamud/Logging/Internal/ModuleLog.cs
+++ b/Dalamud/Logging/Internal/ModuleLog.cs
@@ -43,13 +43,6 @@ public class ModuleLog
]);
}
- ///
- /// Helper method to create a new instance based on a type.
- ///
- /// The class to create this ModuleLog for.
- /// Returns a ModuleLog with name set.
- internal static ModuleLog Create() => new(typeof(T));
-
///
/// Log a templated verbose message to the in-game debug log.
///
@@ -183,4 +176,11 @@ public class ModuleLog
messageTemplate: $"[{this.moduleName}] {messageTemplate}",
values);
}
+
+ ///
+ /// Helper method to create a new instance based on a type.
+ ///
+ /// The class to create this ModuleLog for.
+ /// Returns a ModuleLog with name set.
+ internal static ModuleLog Create() => new(typeof(T));
}