-
Notifications
You must be signed in to change notification settings - Fork 272
/
LogValuesBenchmarks.cs
57 lines (48 loc) · 1.66 KB
/
LogValuesBenchmarks.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
using BenchmarkDotNet.Attributes;
using Microsoft.Extensions.DependencyInjection;
using MicroBenchmarks;
namespace Microsoft.Extensions.Logging
{
[BenchmarkCategory(Categories.Libraries)]
public class Formatting : LoggingBenchmarkBase
{
private ILogger _logger;
[Benchmark]
public void TwoArguments()
{
TwoArgumentErrorMessage(_logger, 1, "string", Exception);
}
[Benchmark(Baseline = true)]
public void NoArguments()
{
NoArgumentErrorMessage(_logger, Exception);
}
[GlobalSetup]
public void Setup()
{
var services = new ServiceCollection();
services.AddLogging();
services.AddSingleton<ILoggerProvider, LoggerProvider<MessageFormattingLogger>>();
_logger = services.BuildServiceProvider().GetService<ILoggerFactory>().CreateLogger("Logger");
}
public class MessageFormattingLogger: ILogger
{
public void Log<TState>(LogLevel logLevel, EventId eventId, TState state, Exception exception, Func<TState, Exception, string> formatter)
{
formatter(state, exception);
}
public bool IsEnabled(LogLevel logLevel)
{
return true;
}
public IDisposable BeginScope<TState>(TState state)
{
return null;
}
}
}
}