Skip to content

Commit

Permalink
5.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
JerryBian committed Feb 19, 2024
1 parent 70b883a commit eb00846
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.3.3
5.3.4
2 changes: 1 addition & 1 deletion src/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class Constants

public const string XUnicode = "\u0078";

public const string DashUnicode = "\u00AD";
public const string DashUnicode = "\u002D";

public const int LogItemsCapacity = 1000;
}
2 changes: 1 addition & 1 deletion src/Logging/ConsoleAppender.cs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ protected override void Handle(TurLogItem item)

if (!string.IsNullOrWhiteSpace(item.Suffix))
{
fullMessage = $"{fullMessage} {item.Suffix}";
fullMessage = $"{fullMessage} ({item.Suffix})";
}

Console.Write(fullMessage);
Expand Down

0 comments on commit eb00846

Please sign in to comment.