From fc3386f6382dc573bd0d4d46c1da5a923a3d1d5e Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Sun, 21 Apr 2024 20:02:05 -0500 Subject: [PATCH] clean import --- .../Classes/Communication/SharpOSC/SlipFrame.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/qController.Standard/Classes/Communication/SharpOSC/SlipFrame.cs b/qController.Standard/Classes/Communication/SharpOSC/SlipFrame.cs index 53c81a5..eae4819 100644 --- a/qController.Standard/Classes/Communication/SharpOSC/SlipFrame.cs +++ b/qController.Standard/Classes/Communication/SharpOSC/SlipFrame.cs @@ -1,5 +1,4 @@ using System.Collections.Generic; -using Serilog; namespace SharpOSC { @@ -9,7 +8,6 @@ namespace SharpOSC public static readonly byte ESC = 0xdb; public static readonly byte ESC_END = 0xDC; public static readonly byte ESC_ESC = 0xDD; - public static ILogger _log = Log.Logger.ForContext(); public static List Decode(byte[] data) { @@ -19,7 +17,6 @@ namespace SharpOSC bool escapeNext = false; for (int i = 0; i < data.Length; i++) { - _log.Information(data[1].ToString()); if (data[i] == ESC) { escapeNext = true;