Removing references to BuilderContext via interface casting

This commit is contained in:
Eugene Sadovoi 2018-12-20 23:46:50 -05:00
Родитель dae47ab97d
Коммит af2b9624e1
1 изменённых файлов: 3 добавлений и 3 удалений

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

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