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
6 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
|
|
|
@ -42,7 +42,7 @@ public class TenantResolver : ITenantResolver, ITransientDependency |
|
|
|
if (context.HasResolvedTenantOrHost()) |
|
|
|
{ |
|
|
|
result.TenantIdOrName = context.TenantIdOrName; |
|
|
|
Logger.LogDebug($"Tenant resolved by '{tenantResolver.Name}' as '{result.TenantIdOrName ?? "Host"}'."); |
|
|
|
Logger.LogDebug("Tenant resolved by '{TenantResolverName}' as '{TenantIdOrName}'.", tenantResolver.Name, result.TenantIdOrName ?? "Host"); |
|
|
|
break; |
|
|
|
} |
|
|
|
} |
|
|
|
|