Browse Source
Update framework/src/Volo.Abp.MultiTenancy/Volo/Abp/MultiTenancy/TenantResolver.cs
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
pull/24376/head
Ma Liming
2 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
framework/src/Volo.Abp.MultiTenancy/Volo/Abp/MultiTenancy/TenantResolver.cs
|
|
|
@ -34,7 +34,7 @@ public class TenantResolver : ITenantResolver, ITransientDependency |
|
|
|
|
|
|
|
foreach (var tenantResolver in Options.TenantResolvers) |
|
|
|
{ |
|
|
|
Logger.LogDebug($"Trying to resolve tenant through '{tenantResolver.Name}'..."); |
|
|
|
Logger.LogDebug("Trying to resolve tenant through '{TenantResolverName}'...", tenantResolver.Name); |
|
|
|
await tenantResolver.ResolveAsync(context); |
|
|
|
|
|
|
|
result.AppliedResolvers.Add(tenantResolver.Name); |
|
|
|
|