aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Common/Logging/Formatters
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.Common/Logging/Formatters')
-rw-r--r--src/Ryujinx.Common/Logging/Formatters/DefaultLogFormatter.cs8
-rw-r--r--src/Ryujinx.Common/Logging/Formatters/DynamicObjectFormatter.cs10
-rw-r--r--src/Ryujinx.Common/Logging/Formatters/ILogFormatter.cs2
3 files changed, 10 insertions, 10 deletions
diff --git a/src/Ryujinx.Common/Logging/Formatters/DefaultLogFormatter.cs b/src/Ryujinx.Common/Logging/Formatters/DefaultLogFormatter.cs
index 3769b03a..ed2a8144 100644
--- a/src/Ryujinx.Common/Logging/Formatters/DefaultLogFormatter.cs
+++ b/src/Ryujinx.Common/Logging/Formatters/DefaultLogFormatter.cs
@@ -5,11 +5,11 @@ namespace Ryujinx.Common.Logging.Formatters
{
internal class DefaultLogFormatter : ILogFormatter
{
- private static readonly ObjectPool<StringBuilder> StringBuilderPool = SharedPools.Default<StringBuilder>();
+ private static readonly ObjectPool<StringBuilder> _stringBuilderPool = SharedPools.Default<StringBuilder>();
public string Format(LogEventArgs args)
{
- StringBuilder sb = StringBuilderPool.Allocate();
+ StringBuilder sb = _stringBuilderPool.Allocate();
try
{
@@ -44,8 +44,8 @@ namespace Ryujinx.Common.Logging.Formatters
}
finally
{
- StringBuilderPool.Release(sb);
+ _stringBuilderPool.Release(sb);
}
}
}
-} \ No newline at end of file
+}
diff --git a/src/Ryujinx.Common/Logging/Formatters/DynamicObjectFormatter.cs b/src/Ryujinx.Common/Logging/Formatters/DynamicObjectFormatter.cs
index 6e3b0043..1ee73acd 100644
--- a/src/Ryujinx.Common/Logging/Formatters/DynamicObjectFormatter.cs
+++ b/src/Ryujinx.Common/Logging/Formatters/DynamicObjectFormatter.cs
@@ -7,7 +7,7 @@ namespace Ryujinx.Common.Logging.Formatters
{
internal static class DynamicObjectFormatter
{
- private static readonly ObjectPool<StringBuilder> StringBuilderPool = SharedPools.Default<StringBuilder>();
+ private static readonly ObjectPool<StringBuilder> _stringBuilderPool = SharedPools.Default<StringBuilder>();
public static string? Format(object? dynamicObject)
{
@@ -16,7 +16,7 @@ namespace Ryujinx.Common.Logging.Formatters
return null;
}
- StringBuilder sb = StringBuilderPool.Allocate();
+ StringBuilder sb = _stringBuilderPool.Allocate();
try
{
@@ -26,7 +26,7 @@ namespace Ryujinx.Common.Logging.Formatters
}
finally
{
- StringBuilderPool.Release(sb);
+ _stringBuilderPool.Release(sb);
}
}
@@ -48,7 +48,7 @@ namespace Ryujinx.Common.Logging.Formatters
if (typeof(Array).IsAssignableFrom(prop.PropertyType))
{
- Array? array = (Array?) prop.GetValue(dynamicObject);
+ Array? array = (Array?)prop.GetValue(dynamicObject);
if (array is not null)
{
@@ -81,4 +81,4 @@ namespace Ryujinx.Common.Logging.Formatters
sb.Append('}');
}
}
-} \ No newline at end of file
+}
diff --git a/src/Ryujinx.Common/Logging/Formatters/ILogFormatter.cs b/src/Ryujinx.Common/Logging/Formatters/ILogFormatter.cs
index 25a06d83..5c660a52 100644
--- a/src/Ryujinx.Common/Logging/Formatters/ILogFormatter.cs
+++ b/src/Ryujinx.Common/Logging/Formatters/ILogFormatter.cs
@@ -4,4 +4,4 @@
{
string Format(LogEventArgs args);
}
-} \ No newline at end of file
+}