com.wallstop-studios.unity-helpers 2.0.0-rc78.7 → 2.0.0-rc78.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.config/dotnet-tools.json +1 -1
- package/Runtime/Core/Extension/StringExtensions.cs +2 -1
- package/Runtime/Core/Extension/{LoggingExtensions.cs → WallstopStudiosLogger.cs} +2 -2
- package/package.json +3 -1
- /package/Runtime/Core/Extension/{LoggingExtensions.cs.meta → WallstopStudiosLogger.cs.meta} +0 -0
|
@@ -8,7 +8,8 @@
|
|
|
8
8
|
|
|
9
9
|
public static class StringExtensions
|
|
10
10
|
{
|
|
11
|
-
private static ThreadLocal<StringBuilder> StringBuilderCache = new(() =>
|
|
11
|
+
private static ThreadLocal<StringBuilder> StringBuilderCache = new(() =>
|
|
12
|
+
new StringBuilder()
|
|
12
13
|
);
|
|
13
14
|
|
|
14
15
|
private static readonly HashSet<char> PascalCaseSeparators = new()
|
|
@@ -15,7 +15,7 @@ namespace WallstopStudios.UnityHelpers.Core.Extension
|
|
|
15
15
|
using Utils;
|
|
16
16
|
using Object = UnityEngine.Object;
|
|
17
17
|
|
|
18
|
-
public static class
|
|
18
|
+
public static class WallstopStudiosLogger
|
|
19
19
|
{
|
|
20
20
|
public static readonly UnityLogTagFormatter LogInstance = new(
|
|
21
21
|
createDefaultDecorators: true
|
|
@@ -33,7 +33,7 @@ namespace WallstopStudios.UnityHelpers.Core.Extension
|
|
|
33
33
|
|
|
34
34
|
private static readonly Dictionary<string, object> GenericObject = new();
|
|
35
35
|
|
|
36
|
-
static
|
|
36
|
+
static WallstopStudiosLogger()
|
|
37
37
|
{
|
|
38
38
|
#if ENABLE_UBERLOGGING
|
|
39
39
|
/*
|
package/package.json
CHANGED
|
File without changes
|