This commit is contained in:
Eugene Sadovoi 2018-12-28 11:09:02 -05:00
Родитель 65c3241dd4
Коммит 41cd9d7338
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -62,7 +62,7 @@ namespace Unity.Microsoft.Logging
public void BuildUp(ref BuilderContext context)
{
context.Existing = null == context.DeclaringType
? LoggerFactory.CreateLogger(context.RegistrationName ?? string.Empty)
? LoggerFactory.CreateLogger(context.Name ?? string.Empty)
: LoggerFactory.CreateLogger(context.DeclaringType);
context.BuildComplete = true;
}