Update logging (add version)

This commit is contained in:
Stef Heyenrath
2021-10-24 10:44:39 +02:00
parent 74edad517b
commit 7ca2095576
6 changed files with 29 additions and 23 deletions

View File

@@ -1,4 +1,4 @@
#if !USE_ASPNETCORE
#if !USE_ASPNETCORE
using JetBrains.Annotations;
using Microsoft.Owin.Hosting;
using Owin;
@@ -63,9 +63,9 @@ namespace WireMock.Owin
private void StartServers()
{
#if NET46
_logger.Info("WireMock.Net server using .net 4.6.1 or higher");
_logger.Info("Server using .net 4.6.1 or higher");
#else
_logger.Info("WireMock.Net server using .net 4.5.x");
_logger.Info("Server using .net 4.5.x");
#endif
var servers = new List<IDisposable>();