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.
///