From d8741773c55aafad9349e187cf897f77f625889a Mon Sep 17 00:00:00 2001 From: Chris Cameron Date: Mon, 8 Apr 2019 16:38:01 -0400 Subject: [PATCH] refactor: Removing unused code --- ICD.Common.Utils/Services/Logging/LogItem.cs | 24 -------------------- 1 file changed, 24 deletions(-) diff --git a/ICD.Common.Utils/Services/Logging/LogItem.cs b/ICD.Common.Utils/Services/Logging/LogItem.cs index 9e55de4..fe45131 100644 --- a/ICD.Common.Utils/Services/Logging/LogItem.cs +++ b/ICD.Common.Utils/Services/Logging/LogItem.cs @@ -1,5 +1,4 @@ using System; -using System.Text; using ICD.Common.Properties; namespace ICD.Common.Utils.Services.Logging @@ -21,11 +20,6 @@ namespace ICD.Common.Utils.Services.Logging [PublicAPI] public DateTime Timestamp { get { return m_Timestamp; } } - /// - /// Gets the log time in local time. - /// - public DateTime LocalTimestamp { get { return Timestamp.ToLocalTime(); } } - /// /// Get/Set for severity level. /// @@ -56,24 +50,6 @@ namespace ICD.Common.Utils.Services.Logging #region Methods - /// - /// Return the text format to send to Fusion - /// - /// text format for fusion, including timestamp, severity, and message - [PublicAPI] - public string GetFusionLogText() - { - StringBuilder s = new StringBuilder(); - - s.Append(Timestamp.ToString("yyyyMMddHHmmss")); - s.Append("||"); - s.Append((int)Severity); - s.Append("||"); - s.Append(Message); - - return s.ToString(); - } - /// /// Implementing default equality. ///