diff --git a/src/Zirconium/Core/Logging/Logger.cs b/src/Zirconium/Core/Logging/Logger.cs index 55dc0c1..9379522 100644 --- a/src/Zirconium/Core/Logging/Logger.cs +++ b/src/Zirconium/Core/Logging/Logger.cs @@ -54,7 +54,7 @@ namespace Zirconium.Core.Logging stFrame = st.GetFrame(2); } var dateTimeFormatter = new Formatter($"{DateTime.Now}", Color.White); - var frameFormatter = new Formatter($"{stFrame.GetMethod().ReflectedType.Name}", Color.DeepPink); + var frameFormatter = new Formatter($"{stFrame.GetMethod().ReflectedType.FullName}", Color.DeepPink); string outputMessage = "[{0}] [{1}] | [{2}]: " + message;