diff --git a/EonaCat.Logger.LogClient/EonaCat.Logger.LogClient.csproj b/EonaCat.Logger.LogClient/EonaCat.Logger.LogClient.csproj
index cf84245..3a539d1 100644
--- a/EonaCat.Logger.LogClient/EonaCat.Logger.LogClient.csproj
+++ b/EonaCat.Logger.LogClient/EonaCat.Logger.LogClient.csproj
@@ -25,7 +25,7 @@
-
+
diff --git a/EonaCat.Logger.Server/Server.cs b/EonaCat.Logger.Server/Server.cs
index bb36864..2661a23 100644
--- a/EonaCat.Logger.Server/Server.cs
+++ b/EonaCat.Logger.Server/Server.cs
@@ -261,7 +261,7 @@ namespace EonaCat.Logger.Server
{
char[] buffer = new char[8192]; // 8KB buffer size for large data
int bytesRead;
- StringBuilder logData = new StringBuilder();
+ StringBuilderChill logData = new StringBuilderChill();
while ((bytesRead = await reader.ReadAsync(buffer, 0, buffer.Length)) > 0)
{
diff --git a/EonaCat.Logger/EonaCat.Logger.csproj b/EonaCat.Logger/EonaCat.Logger.csproj
index 0353e87..1bb4559 100644
--- a/EonaCat.Logger/EonaCat.Logger.csproj
+++ b/EonaCat.Logger/EonaCat.Logger.csproj
@@ -13,6 +13,8 @@
EonaCat (Jeroen Saey)
EonaCat;Logger;EonaCatLogger;Log;Writer;Jeroen;Saey
+ 1.5.6
+ 1.5.6
README.md
True
LICENSE
@@ -23,7 +25,7 @@
- 1.5.5+{chash:10}.{c:ymd}
+ 1.5.6+{chash:10}.{c:ymd}
true
true
v[0-9]*
@@ -38,7 +40,7 @@
-
+
$(GeneratedVersion)
@@ -61,7 +63,7 @@
-
+
all
runtime; build; native; contentfiles; analyzers; buildtransitive
diff --git a/EonaCat.Logger/Extensions/ExceptionExtensions.cs b/EonaCat.Logger/Extensions/ExceptionExtensions.cs
index cc27a79..21c4b02 100644
--- a/EonaCat.Logger/Extensions/ExceptionExtensions.cs
+++ b/EonaCat.Logger/Extensions/ExceptionExtensions.cs
@@ -28,7 +28,7 @@ public static class ExceptionExtensions
filename = frame.GetFileName();
}
- var sb = new StringBuilder();
+ var sb = new StringBuilderChill();
sb.AppendLine();
sb.AppendLine($"--- Exception details provided by {DllInfo.ApplicationName} ---");
@@ -62,7 +62,7 @@ public static class ExceptionExtensions
private static string FormatExceptionData(IDictionary data)
{
- var sb = new StringBuilder();
+ var sb = new StringBuilderChill();
foreach (DictionaryEntry entry in data)
{
@@ -84,7 +84,7 @@ public static class ExceptionExtensions
private static string FormatInnerException(Exception innerException)
{
- var sb = new StringBuilder();
+ var sb = new StringBuilderChill();
sb.AppendLine(innerException.GetType().ToString())
.AppendLine(" Message : " + innerException.Message)
diff --git a/EonaCat.Logger/Extensions/ObjectExtensions.cs b/EonaCat.Logger/Extensions/ObjectExtensions.cs
index 31f5289..8fe4967 100644
--- a/EonaCat.Logger/Extensions/ObjectExtensions.cs
+++ b/EonaCat.Logger/Extensions/ObjectExtensions.cs
@@ -100,13 +100,13 @@ namespace EonaCat.Logger.Extensions
private static string DumpTree(object currentObject, int? maxDepth, int? maxCollectionItems)
{
- var stringBuilder = new StringBuilder();
+ var stringBuilder = new StringBuilderChill();
var visitedHashSet = new HashSet