Skip to content

Commit e11fee9

Browse files
committed
fix: Remove redundant namespace qualification, add comments to field members, and add ToString method to aid in better logging.
1 parent 0ae05f7 commit e11fee9

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

com.playeveryware.eos/Runtime/Core/Config/Deployment.cs

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,19 @@
2222

2323
namespace PlayEveryWare.EpicOnlineServices
2424
{
25-
using PlayEveryWare.EpicOnlineServices.Utility;
25+
using Utility;
2626
using System;
2727

2828
public struct Deployment : IEquatable<Deployment>
2929
{
30+
/// <summary>
31+
/// The SandboxId for the deployment.
32+
/// </summary>
3033
public SandboxId SandboxId;
3134

35+
/// <summary>
36+
/// The DeploymentId.
37+
/// </summary>
3238
public Guid DeploymentId;
3339

3440
/// <summary>
@@ -58,6 +64,11 @@ public override int GetHashCode()
5864
{
5965
return HashUtility.Combine(SandboxId, DeploymentId);
6066
}
67+
68+
public override string ToString()
69+
{
70+
return $"DeploymentId: {DeploymentId.ToString("N").ToLower()}, SandboxId: {SandboxId}";
71+
}
6172
}
6273

6374
}

0 commit comments

Comments
 (0)