aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Common/Logging/Formatters/DefaultLogFormatter.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.Common/Logging/Formatters/DefaultLogFormatter.cs')
-rw-r--r--src/Ryujinx.Common/Logging/Formatters/DefaultLogFormatter.cs8
1 files changed, 4 insertions, 4 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
+}