From a12d9df9a20645c454d4b49c727fd432e8beba61 Mon Sep 17 00:00:00 2001
From: MidoriKami <9083275+MidoriKami@users.noreply.github.com>
Date: Thu, 7 Sep 2023 10:07:55 -0700
Subject: [PATCH] Chat Payload Remove Logspam (#1368)
---
Dalamud/Game/Text/SeStringHandling/Payload.cs | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/Dalamud/Game/Text/SeStringHandling/Payload.cs b/Dalamud/Game/Text/SeStringHandling/Payload.cs
index dbd70a58e..117606a7a 100644
--- a/Dalamud/Game/Text/SeStringHandling/Payload.cs
+++ b/Dalamud/Game/Text/SeStringHandling/Payload.cs
@@ -206,9 +206,9 @@ public abstract partial class Payload
case SeStringChunkType.Icon:
payload = new IconPayload();
break;
-
+
default:
- Log.Verbose("Unhandled SeStringChunkType: {0}", chunkType);
+ // Log.Verbose("Unhandled SeStringChunkType: {0}", chunkType);
break;
}
@@ -307,6 +307,11 @@ public abstract partial class Payload
///
protected enum SeStringChunkType
{
+ ///
+ /// See the .
+ ///
+ NewLine = 0x10,
+
///
/// See the class.
///
@@ -317,11 +322,6 @@ public abstract partial class Payload
///
EmphasisItalic = 0x1A,
- ///
- /// See the .
- ///
- NewLine = 0x10,
-
///
/// See the class.
///