This fixes the problem where the ilog dependency gets resolved using the wrong logger.

This commit is contained in:
Efrain Bastidas 2019-04-17 08:22:14 -04:00
Родитель c18374e393
Коммит 63ac1a6305
1 изменённых файлов: 1 добавлений и 4 удалений

Просмотреть файл

@ -1,5 +1,4 @@
using log4net;
using System;
using System.Security;
using Unity.Builder;
using Unity.Extension;
@ -18,9 +17,7 @@ namespace Unity.log4net
public ResolveDelegate<BuilderContext> GetResolver(ref BuilderContext context)
{
Type declaringType = context.DeclaringType;
return (ref BuilderContext c) => LogManager.GetLogger(declaringType);
return (ref BuilderContext c) => LogManager.GetLogger(c.DeclaringType);
}
}
}