Performance optimizations
This commit is contained in:
Родитель
e9a74eac77
Коммит
dae47ab97d
|
@ -63,9 +63,9 @@ namespace Unity.Microsoft.Logging
|
||||||
|
|
||||||
public void BuildUp(ref BuilderContext context)
|
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.Registration.Name ?? string.Empty)
|
||||||
: LoggerFactory.CreateLogger(context.ParentContext.Type);
|
: LoggerFactory.CreateLogger(context.Parent.Type);
|
||||||
context.BuildComplete = true;
|
context.BuildComplete = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче