diff --git a/Assets/GameScripts/DotNet/Core/IdFactory/RouteIdStruct.cs b/Assets/GameScripts/DotNet/Core/IdFactory/RouteIdStruct.cs index 8ce2b162..7e4e48a6 100644 --- a/Assets/GameScripts/DotNet/Core/IdFactory/RouteIdStruct.cs +++ b/Assets/GameScripts/DotNet/Core/IdFactory/RouteIdStruct.cs @@ -40,5 +40,10 @@ namespace TEngine.Core idStruct.AppId = (ushort)(routeId & MaskAppId); return idStruct; } + + public override string ToString() + { + return $"AppId:{this.AppId}|WordId:{this.WordId}"; + } } } \ No newline at end of file diff --git a/Assets/GameScripts/DotNet/Core/IdFactory/RuntimeIdStruct.cs b/Assets/GameScripts/DotNet/Core/IdFactory/RuntimeIdStruct.cs index 18ab3f71..d581f4f7 100644 --- a/Assets/GameScripts/DotNet/Core/IdFactory/RuntimeIdStruct.cs +++ b/Assets/GameScripts/DotNet/Core/IdFactory/RuntimeIdStruct.cs @@ -39,7 +39,7 @@ namespace TEngine.Core public override string ToString() { - return $"time: {this.Time}, value: {this.Sequence}"; + return $"Time: {this.Time}, Sequence: {this.Sequence}"; } } } \ No newline at end of file