From 82c3df83c43b32510927b7fa710eeb099067ed2e Mon Sep 17 00:00:00 2001 From: jduncanator <1518948+jduncanator@users.noreply.github.com> Date: Thu, 26 Mar 2020 08:33:18 +1100 Subject: prepo: Add a MessagePack object formatter (#1034) --- Ryujinx.HLE/HOS/Services/Prepo/IPrepoService.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'Ryujinx.HLE/HOS') diff --git a/Ryujinx.HLE/HOS/Services/Prepo/IPrepoService.cs b/Ryujinx.HLE/HOS/Services/Prepo/IPrepoService.cs index c6a6ac56..32a5950d 100644 --- a/Ryujinx.HLE/HOS/Services/Prepo/IPrepoService.cs +++ b/Ryujinx.HLE/HOS/Services/Prepo/IPrepoService.cs @@ -2,11 +2,10 @@ using MsgPack; using MsgPack.Serialization; using Ryujinx.Common; using Ryujinx.Common.Logging; +using Ryujinx.Common.Utilities; using Ryujinx.HLE.HOS.Services.Account.Acc; using Ryujinx.HLE.Utilities; -using System.IO; using System.Text; -using Utf8Json; namespace Ryujinx.HLE.HOS.Services.Prepo { @@ -117,7 +116,7 @@ namespace Ryujinx.HLE.HOS.Services.Prepo } builder.AppendLine($" Room: {room}"); - builder.AppendLine($" Report: {deserializedReport}"); + builder.AppendLine($" Report: {MessagePackObjectFormatter.Format(deserializedReport)}"); return builder.ToString(); } -- cgit v1.2.3