Chat Payload Remove Logspam (#1368)

This commit is contained in:
MidoriKami 2023-09-07 10:07:55 -07:00 committed by GitHub
parent 7a03458696
commit a12d9df9a2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
/// </summary>
protected enum SeStringChunkType
{
/// <summary>
/// See the <see cref="NewLinePayload"/>.
/// </summary>
NewLine = 0x10,
/// <summary>
/// See the <see cref="IconPayload"/> class.
/// </summary>
@ -317,11 +322,6 @@ public abstract partial class Payload
/// </summary>
EmphasisItalic = 0x1A,
/// <summary>
/// See the <see cref="NewLinePayload"/>.
/// </summary>
NewLine = 0x10,
/// <summary>
/// See the <see cref="SeHyphenPayload"/> class.
/// </summary>