(source);
diff --git a/README.md b/README.md
index 3d130175..80550f13 100644
--- a/README.md
+++ b/README.md
@@ -249,6 +249,15 @@ Contributors
Regelink
+
+
+
+
+ Sl-Alex
+
+ |
+
+
@@ -256,8 +265,6 @@ Contributors
rgruening
|
-
-
@@ -293,6 +300,8 @@ Contributors
DaMutz
|
+
+
@@ -300,8 +309,6 @@ Contributors
StormOli
|
-
-
diff --git a/libEDSsharp/CanOpenEDSMapping.cs b/libEDSsharp/CanOpenEDSMapping.cs
index ce980ef3..3133e44d 100644
--- a/libEDSsharp/CanOpenEDSMapping.cs
+++ b/libEDSsharp/CanOpenEDSMapping.cs
@@ -20,6 +20,7 @@ You should have received a copy of the GNU General Public License
using AutoMapper;
using Google.Protobuf.WellKnownTypes;
using LibCanOpen;
+using Microsoft.Extensions.Logging;
using System;
using System.Collections.Generic;
using System.Globalization;
@@ -167,7 +168,7 @@ public static EDSsharp MapFromProtobuffer(CanOpenDevice source)
.ForMember(dest => dest.objecttype, opt => opt.Ignore())
.ForMember(dest => dest.Description, opt => opt.Ignore())
.ForMember(dest => dest.subobjects, opt => opt.Ignore());
- });
+ }, LoggerFactory.Create(builder => { builder.AddDebug(); }));
config.AssertConfigurationIsValid();
var mapper = config.CreateMapper();
@@ -236,7 +237,7 @@ public static CanOpenDevice MapToProtobuffer(EDSsharp source)
.ForMember(dest => dest.Pdo, opt => opt.MapFrom(src => src.accesstype))
.ForMember(dest => dest.Srdo, opt => opt.MapFrom(src => src.prop.CO_accessSRDO))
.ForMember(dest => dest.StringLengthMin, opt => opt.MapFrom(src => src.prop.CO_stringLengthMin));
- });
+ }, LoggerFactory.Create(builder => { builder.AddDebug(); }));
config.AssertConfigurationIsValid();
var mapper = config.CreateMapper();
diff --git a/libEDSsharp/libEDSsharp.csproj b/libEDSsharp/libEDSsharp.csproj
index 3e443832..37f8bff6 100644
--- a/libEDSsharp/libEDSsharp.csproj
+++ b/libEDSsharp/libEDSsharp.csproj
@@ -47,8 +47,8 @@
-
-
+
+
|