Remove unused Logger from DatItem

This commit is contained in:
Matt Nadareski
2024-03-10 17:05:44 -04:00
parent d81fb22cf6
commit 9f72eaeb55

View File

@@ -97,17 +97,11 @@ namespace SabreTools.DatItems
#region Logging #region Logging
/// <summary>
/// Logging object
/// </summary>
[JsonIgnore, XmlIgnore]
protected Logger logger;
/// <summary> /// <summary>
/// Static logger for static methods /// Static logger for static methods
/// </summary> /// </summary>
[JsonIgnore, XmlIgnore] [JsonIgnore, XmlIgnore]
protected static Logger staticLogger = new(); protected static readonly Logger staticLogger = new();
#endregion #endregion
@@ -172,8 +166,6 @@ namespace SabreTools.DatItems
{ {
_internal = new Models.Metadata.Blank(); _internal = new Models.Metadata.Blank();
SetFieldValue<Machine>(DatItem.MachineKey, new Machine()); SetFieldValue<Machine>(DatItem.MachineKey, new Machine());
logger = new Logger(this);
} }
/// <summary> /// <summary>