This commit is contained in:
Eugene Sadovoi 2018-12-19 22:00:32 -05:00
Родитель e9a74eac77
Коммит dae47ab97d
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -63,9 +63,9 @@ namespace Unity.Microsoft.Logging
public void BuildUp(ref BuilderContext context)
{
context.Existing = null == context.ParentContext
context.Existing = null == context.Parent
? LoggerFactory.CreateLogger(context.Registration.Name ?? string.Empty)
: LoggerFactory.CreateLogger(context.ParentContext.Type);
: LoggerFactory.CreateLogger(context.Parent.Type);
context.BuildComplete = true;
}