Skip to content

Commit cfdf288

Browse files
committed
Added benchmarks.
1 parent adfe396 commit cfdf288

File tree

6 files changed

+80
-3
lines changed

6 files changed

+80
-3
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,6 @@ Logs/
3636

3737
# Visual Studio 2015
3838
.vs/
39+
40+
# BenchmarkDotNet
41+
BenchmarkDotNet.Artifacts/

Logging.sln

+7-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "com.github.akovac35.Logging
2828
EndProject
2929
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "com.github.akovac35.Logging.Testing", "src\com.github.akovac35.Logging.Testing\com.github.akovac35.Logging.Testing.csproj", "{FDCD8BB1-5AB3-47C0-9B69-C448D7A4AC61}"
3030
EndProject
31-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "com.github.akovac35.Logging.NLog.Tests", "test\com.github.akovac35.Logging.NLog.Tests\com.github.akovac35.Logging.NLog.Tests.csproj", "{029D0B0D-4BE3-4233-8DD3-30FF75DCE4A2}"
31+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "com.github.akovac35.Logging.NLog.Tests", "test\com.github.akovac35.Logging.NLog.Tests\com.github.akovac35.Logging.NLog.Tests.csproj", "{029D0B0D-4BE3-4233-8DD3-30FF75DCE4A2}"
32+
EndProject
33+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "com.github.akovac35.Logging.Benchmarks", "test\com.github.akovac35.Logging.Benchmarks\com.github.akovac35.Logging.Benchmarks.csproj", "{259CF0A2-CFCA-4F9A-B165-A38A5F5E7EF0}"
3234
EndProject
3335
Global
3436
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -80,6 +82,10 @@ Global
8082
{029D0B0D-4BE3-4233-8DD3-30FF75DCE4A2}.Debug|Any CPU.Build.0 = Debug|Any CPU
8183
{029D0B0D-4BE3-4233-8DD3-30FF75DCE4A2}.Release|Any CPU.ActiveCfg = Release|Any CPU
8284
{029D0B0D-4BE3-4233-8DD3-30FF75DCE4A2}.Release|Any CPU.Build.0 = Release|Any CPU
85+
{259CF0A2-CFCA-4F9A-B165-A38A5F5E7EF0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
86+
{259CF0A2-CFCA-4F9A-B165-A38A5F5E7EF0}.Debug|Any CPU.Build.0 = Debug|Any CPU
87+
{259CF0A2-CFCA-4F9A-B165-A38A5F5E7EF0}.Release|Any CPU.ActiveCfg = Release|Any CPU
88+
{259CF0A2-CFCA-4F9A-B165-A38A5F5E7EF0}.Release|Any CPU.Build.0 = Release|Any CPU
8389
EndGlobalSection
8490
GlobalSection(SolutionProperties) = preSolution
8591
HideSolutionNode = FALSE

src/com.github.akovac35.Logging/com.github.akovac35.Logging.csproj

+3-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@
1212
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
1313
<PackageIcon>.NET_Core_Logo.png</PackageIcon>
1414
<RepositoryType>git</RepositoryType>
15-
<PackageReleaseNotes>- Minor performance optimization,
16-
- updated project description.</PackageReleaseNotes>
15+
<PackageReleaseNotes>- Minor performance optimizations,
16+
- updated project description,
17+
- added benchmarks.</PackageReleaseNotes>
1718
</PropertyGroup>
1819

1920
<ItemGroup>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
// License:
2+
// Apache License Version 2.0, January 2004
3+
4+
// Authors:
5+
// Aleksander Kovač
6+
7+
using BenchmarkDotNet.Attributes;
8+
using Microsoft.Extensions.Logging;
9+
using System;
10+
11+
namespace com.github.akovac35.Logging.Benchmarks
12+
{
13+
[MinColumn, MaxColumn]
14+
public class ILoggerExtensions_Here_Benchmark
15+
{
16+
private ILogger _logger = LoggerFactoryProvider.LoggerFactory.CreateLogger<ILoggerExtensions_Here_Benchmark>();
17+
18+
[Benchmark(Baseline = true)]
19+
public DateTime EnteringExitingWithoutHere()
20+
{
21+
_logger.Entering();
22+
23+
_logger.Exiting();
24+
return DateTime.Now;
25+
}
26+
27+
[Benchmark]
28+
public DateTime EnteringExitingWithHere()
29+
{
30+
_logger.Here(l => l.Entering());
31+
32+
_logger.Here(l => l.Exiting());
33+
return DateTime.Now;
34+
}
35+
}
36+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// License:
2+
// Apache License Version 2.0, January 2004
3+
4+
// Authors:
5+
// Aleksander Kovač
6+
7+
using BenchmarkDotNet.Running;
8+
9+
namespace com.github.akovac35.Logging.Benchmarks
10+
{
11+
public class Program
12+
{
13+
public static void Main(string[] args) => BenchmarkSwitcher.FromAssembly(typeof(Program).Assembly).Run(args);
14+
}
15+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFramework>netcoreapp3.1</TargetFramework>
6+
</PropertyGroup>
7+
8+
<ItemGroup>
9+
<PackageReference Include="BenchmarkDotNet" Version="0.12.1" />
10+
</ItemGroup>
11+
12+
<ItemGroup>
13+
<ProjectReference Include="..\..\src\com.github.akovac35.Logging\com.github.akovac35.Logging.csproj" />
14+
</ItemGroup>
15+
16+
</Project>

0 commit comments

Comments
 (0)