Skip to content

Commit 0ae05f7

Browse files
committed
fix: Improve the ToString method for Named to assist in better logging.
1 parent 0e95b3d commit 0ae05f7

File tree

1 file changed

+1
-1
lines changed
  • com.playeveryware.eos/Runtime/Core/Common

1 file changed

+1
-1
lines changed

com.playeveryware.eos/Runtime/Core/Common/Named.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ public override int GetHashCode()
130130

131131
public override string ToString()
132132
{
133-
return $"{Name} : {Value}";
133+
return $"\"{Name}\" : ({Value})";
134134
}
135135
}
136136
}

0 commit comments

Comments
 (0)