diff --git a/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/IdentityServers/ApiScopes/Dtos/PagingApiScopeListOutput.cs b/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/IdentityServers/ApiScopes/Dtos/PagingApiScopeListOutput.cs index 57a7707e..90138ce6 100644 --- a/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/IdentityServers/ApiScopes/Dtos/PagingApiScopeListOutput.cs +++ b/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/IdentityServers/ApiScopes/Dtos/PagingApiScopeListOutput.cs @@ -1,6 +1,9 @@ -namespace CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos +using System; +using Volo.Abp.Application.Dtos; + +namespace CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos { - public class PagingApiScopeListOutput + public class PagingApiScopeListOutput : EntityDto { public bool Enabled { get; set; } diff --git a/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/IdentityServers/Clients/Dtos/EnabledInput.cs b/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/IdentityServers/Clients/Dtos/EnabledInput.cs new file mode 100644 index 00000000..48449da4 --- /dev/null +++ b/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/IdentityServers/Clients/Dtos/EnabledInput.cs @@ -0,0 +1,12 @@ +using System.ComponentModel.DataAnnotations; + +namespace CompanyName.ProjectName.IdentityServers.Clients +{ + public class EnabledInput + { + [Required] + public string ClientId { get; set; } + + public bool Enabled { get; set; } + } +} \ No newline at end of file diff --git a/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/IdentityServers/Clients/Dtos/UpdataBasicDataInput.cs b/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/IdentityServers/Clients/Dtos/UpdataBasicDataInput.cs index 74b62757..e06c2e6b 100644 --- a/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/IdentityServers/Clients/Dtos/UpdataBasicDataInput.cs +++ b/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/IdentityServers/Clients/Dtos/UpdataBasicDataInput.cs @@ -79,5 +79,8 @@ public string UserCodeType { get; set; } public int DeviceCodeLifetime { get; set; } = 300; + + public string Secret { get; set; } + public string SecretType { get; set; } } } \ No newline at end of file diff --git a/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/IdentityServers/Clients/IIdentityServerClientAppService.cs b/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/IdentityServers/Clients/IIdentityServerClientAppService.cs index b4a107bd..8a46110f 100644 --- a/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/IdentityServers/Clients/IIdentityServerClientAppService.cs +++ b/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/IdentityServers/Clients/IIdentityServerClientAppService.cs @@ -67,5 +67,12 @@ namespace CompanyName.ProjectName.IdentityServers.Clients /// 删除cors /// Task RemoveCorsAsync(RemoveCorsInput input); + + /// + /// 禁用client + /// + /// + /// + Task EnabledAsync(EnabledInput input); } } \ No newline at end of file diff --git a/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/IdentityServers/IdentityResources/Dtos/PagingIdentityResourceListOutput.cs b/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/IdentityServers/IdentityResources/Dtos/PagingIdentityResourceListOutput.cs index ebf23df7..692af5c4 100644 --- a/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/IdentityServers/IdentityResources/Dtos/PagingIdentityResourceListOutput.cs +++ b/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/IdentityServers/IdentityResources/Dtos/PagingIdentityResourceListOutput.cs @@ -1,6 +1,9 @@ -namespace CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos +using System; +using Volo.Abp.Application.Dtos; + +namespace CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos { - public class PagingIdentityResourceListOutput + public class PagingIdentityResourceListOutput:EntityDto { public string Name { get; set; } diff --git a/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/Permissions/ProjectNamePermissionDefinitionProvider.cs b/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/Permissions/ProjectNamePermissionDefinitionProvider.cs index 50e066e4..0bb88f21 100644 --- a/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/Permissions/ProjectNamePermissionDefinitionProvider.cs +++ b/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/Permissions/ProjectNamePermissionDefinitionProvider.cs @@ -17,9 +17,7 @@ namespace CompanyName.ProjectName.Permissions var roleManagement = abpIdentityGroup.GetPermissionOrNull(ProjectNamePermissions.AbpIdentityExtend.Roles); roleManagement.AddChild(ProjectNamePermissions.AbpIdentityExtend.RoleQuery, L("Permissions:Query")); - - var auditManagement = abpIdentityGroup.AddPermission(ProjectNamePermissions.AbpIdentityExtend.AuditLogs, L("Permissions:AuditLogManagement")); - auditManagement.AddChild(ProjectNamePermissions.AbpIdentityExtend.AuditLogQuery, L("Permissions:Query")); + } diff --git a/aspnet-core/services/src/CompanyName.ProjectName.Application/IdentityServers/Clients/IdentityServerClientAppService.cs b/aspnet-core/services/src/CompanyName.ProjectName.Application/IdentityServers/Clients/IdentityServerClientAppService.cs index 597d57e2..8642fdb9 100644 --- a/aspnet-core/services/src/CompanyName.ProjectName.Application/IdentityServers/Clients/IdentityServerClientAppService.cs +++ b/aspnet-core/services/src/CompanyName.ProjectName.Application/IdentityServers/Clients/IdentityServerClientAppService.cs @@ -93,7 +93,9 @@ namespace CompanyName.ProjectName.IdentityServers.Clients input.UserSsoLifetime, input.UserCodeType, input.DeviceCodeLifetime, - input.SlidingRefreshTokenLifetime + input.SlidingRefreshTokenLifetime, + input.Secret, + input.SecretType ); } @@ -153,5 +155,15 @@ namespace CompanyName.ProjectName.IdentityServers.Clients { return _idenityServerClientManager.RemoveCorsAsync(input.ClientId, input.Origin); } + + /// + /// 禁用client + /// + /// + /// + public Task EnabledAsync(EnabledInput input) + { + return _idenityServerClientManager.EnabledAsync(input.ClientId, input.Enabled); + } } } \ No newline at end of file diff --git a/aspnet-core/services/src/CompanyName.ProjectName.Application/Roles/RoleAppService.cs b/aspnet-core/services/src/CompanyName.ProjectName.Application/Roles/RoleAppService.cs index b1d79183..7db52518 100644 --- a/aspnet-core/services/src/CompanyName.ProjectName.Application/Roles/RoleAppService.cs +++ b/aspnet-core/services/src/CompanyName.ProjectName.Application/Roles/RoleAppService.cs @@ -89,7 +89,6 @@ namespace CompanyName.ProjectName.Roles /// /// 获取所有权限 /// - /// /// public async Task GetPermissionAsync(GetPermissionInput input) { diff --git a/aspnet-core/services/src/CompanyName.ProjectName.Domain/IdentityServer/IdenityServerApiResourceManager.cs b/aspnet-core/services/src/CompanyName.ProjectName.Domain/IdentityServer/IdenityServerApiResourceManager.cs index 276b88dd..d260fc10 100644 --- a/aspnet-core/services/src/CompanyName.ProjectName.Domain/IdentityServer/IdenityServerApiResourceManager.cs +++ b/aspnet-core/services/src/CompanyName.ProjectName.Domain/IdentityServer/IdenityServerApiResourceManager.cs @@ -119,7 +119,17 @@ namespace CompanyName.ProjectName.IdentityServer apiResource.ShowInDiscoveryDocument = showInDiscoveryDocument; secrets?.Distinct().ToList().ForEach(item => { - apiResource.AddSecret(item.Value.ToSha256(), item.Expiration, item.Type, item.Description); + var secret = apiResource.Secrets.FirstOrDefault(e => e.Value == item.Value.ToSha256() && e.Type==item.Type); + if (secret != null) + { + secret.Expiration = item.Expiration; + secret.Description = item.Description; + } + else + { + apiResource.AddSecret(item.Value.ToSha256(), item.Expiration, item.Type, item.Description); + } + }); scopes?.Distinct().ToList().ForEach(item => { apiResource.AddScope(item.Scope); }); diff --git a/aspnet-core/services/src/CompanyName.ProjectName.Domain/IdentityServer/IdenityServerClientManager.cs b/aspnet-core/services/src/CompanyName.ProjectName.Domain/IdentityServer/IdenityServerClientManager.cs index 4f8edb1b..a32ae308 100644 --- a/aspnet-core/services/src/CompanyName.ProjectName.Domain/IdentityServer/IdenityServerClientManager.cs +++ b/aspnet-core/services/src/CompanyName.ProjectName.Domain/IdentityServer/IdenityServerClientManager.cs @@ -3,6 +3,7 @@ using System.Collections.Generic; using System.Linq; using System.Threading; using System.Threading.Tasks; +using IdentityModel; using Volo.Abp; using Volo.Abp.Domain.Services; using Volo.Abp.IdentityServer.Clients; @@ -44,7 +45,9 @@ namespace CompanyName.ProjectName.IdentityServer public async Task CreateAsync(string clientId, string clientName, string description) { - var entity = new Client(GuidGenerator.Create(), clientId) + var entity = await _clientRepository.FindByClientIdAsync(clientId); + if (null != entity) throw new UserFriendlyException(message: "当前ClientId已存在"); + entity = new Client(GuidGenerator.Create(), clientId) { ClientName = clientName, Description = description }; @@ -90,7 +93,10 @@ namespace CompanyName.ProjectName.IdentityServer int? userSsoLifetime, string userCodeType, int deviceCodeLifetime, - int slidingRefreshTokenLifetime + int slidingRefreshTokenLifetime, + string secret, + string secretType + ) { var client = await _clientRepository.FindByClientIdAsync(clientId); @@ -138,6 +144,8 @@ namespace CompanyName.ProjectName.IdentityServer client.UserSsoLifetime = userSsoLifetime; client.UserCodeType = userCodeType; client.EnableLocalLogin = enableLocalLogin; + client.ClientSecrets.Clear(); + client.AddSecret(secret.ToSha256(), null, secretType, String.Empty); return await _clientRepository.UpdateAsync(client); } @@ -256,5 +264,13 @@ namespace CompanyName.ProjectName.IdentityServer return client; } + + public async Task EnabledAsync(string clientId, bool enabled) + { + var client = await _clientRepository.FindByClientIdAsync(clientId); + if (client == null) throw new UserFriendlyException(message: "Client不存在"); + client.Enabled = enabled; + return await _clientRepository.UpdateAsync(client); + } } } \ No newline at end of file diff --git a/aspnet-core/services/src/CompanyName.ProjectName.Domain/IdentityServer/IdentityResourceManager.cs b/aspnet-core/services/src/CompanyName.ProjectName.Domain/IdentityServer/IdentityResourceManager.cs index b0572318..47851281 100644 --- a/aspnet-core/services/src/CompanyName.ProjectName.Domain/IdentityServer/IdentityResourceManager.cs +++ b/aspnet-core/services/src/CompanyName.ProjectName.Domain/IdentityServer/IdentityResourceManager.cs @@ -57,7 +57,7 @@ namespace CompanyName.ProjectName.IdentityServer bool showInDiscoveryDocument) { var identityResource = await _identityResourceRepository.FindByNameAsync(name, false); - if (null == identityResource) throw new UserFriendlyException(message: $"{name}不存在"); + if (null != identityResource) throw new UserFriendlyException(message: $"{name}已存在"); identityResource = new IdentityResource(GuidGenerator.Create(), name, displayName, description, required, emphasize, showInDiscoveryDocument, enabled); diff --git a/aspnet-core/services/src/CompanyName.ProjectName.HttpApi.Host/Logs/logs.txt b/aspnet-core/services/src/CompanyName.ProjectName.HttpApi.Host/Logs/logs.txt index 2c123401..adebbfb9 100644 --- a/aspnet-core/services/src/CompanyName.ProjectName.HttpApi.Host/Logs/logs.txt +++ b/aspnet-core/services/src/CompanyName.ProjectName.HttpApi.Host/Logs/logs.txt @@ -45073,3 +45073,17155 @@ Volo.Abp.AbpException: No policy defined to get/set permissions for the provider 2021-08-21 09:02:01.250 +08:00 [DBG] 1 recurring job(s) processed by scheduler. 2021-08-21 09:02:22.282 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent 2021-08-21 09:02:52.301 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:03:22.317 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:03:52.350 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:04:18.450 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 09:04:22.372 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:04:35.214 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 09:04:51.340 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 09:04:52.390 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:05:01.051 +08:00 [DBG] 624 recurring job(s) processed by scheduler. +2021-08-21 09:05:22.420 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:05:52.451 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:06:22.469 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:06:32.171 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 09:06:47.842 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 09:06:50.455 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 09:06:52.492 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:07:01.049 +08:00 [DBG] 842 recurring job(s) processed by scheduler. +2021-08-21 09:07:22.505 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:07:52.534 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:08:22.548 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:08:33.236 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 09:08:50.779 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 09:08:52.565 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:09:01.084 +08:00 [DBG] 487 recurring job(s) processed by scheduler. +2021-08-21 09:09:22.583 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:09:44.011 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:09:44.012 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:09:44.012 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6581ms +2021-08-21 09:09:44.015 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:09:44.015 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:09:44.018 +08:00 [INF] Successfully validated the token. +2021-08-21 09:09:44.049 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:09:44.049 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:09:44.049 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 34.0883ms +2021-08-21 09:09:44.071 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:09:44.071 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:09:44.071 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4373ms +2021-08-21 09:09:44.073 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:09:44.073 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:09:44.075 +08:00 [INF] Successfully validated the token. +2021-08-21 09:09:44.097 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:09:44.097 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:09:44.097 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 24.5379ms +2021-08-21 09:09:52.629 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:10:09.465 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:10:09.465 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:10:09.465 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6909ms +2021-08-21 09:10:09.467 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:10:09.468 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:10:09.471 +08:00 [INF] Successfully validated the token. +2021-08-21 09:10:09.508 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:10:09.508 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:10:09.508 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 41.2726ms +2021-08-21 09:10:09.530 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:10:09.530 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:10:09.530 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.7442ms +2021-08-21 09:10:09.533 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:10:09.534 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:10:09.537 +08:00 [INF] Successfully validated the token. +2021-08-21 09:10:09.564 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:10:09.564 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:10:09.564 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 30.5865ms +2021-08-21 09:10:18.284 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:10:18.284 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:10:18.284 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4226ms +2021-08-21 09:10:18.286 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:10:18.286 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:10:18.288 +08:00 [INF] Successfully validated the token. +2021-08-21 09:10:18.308 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:10:18.308 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:10:18.308 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 22.5029ms +2021-08-21 09:10:22.660 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:10:47.563 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 09:10:52.677 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:10:54.350 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:10:54.350 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:10:54.350 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5318ms +2021-08-21 09:10:54.353 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:10:54.353 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:10:54.356 +08:00 [INF] Successfully validated the token. +2021-08-21 09:10:54.383 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:10:54.383 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:10:54.383 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 30.6627ms +2021-08-21 09:10:54.443 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:10:54.443 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:10:54.444 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5418ms +2021-08-21 09:10:54.446 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:10:54.446 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:10:54.450 +08:00 [INF] Successfully validated the token. +2021-08-21 09:10:54.474 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:10:54.474 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:10:54.474 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 28.1695ms +2021-08-21 09:11:01.053 +08:00 [DBG] 727 recurring job(s) processed by scheduler. +2021-08-21 09:11:22.707 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:11:50.467 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 09:11:52.734 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:11:55.361 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/api/app/account/login - - +2021-08-21 09:11:55.362 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:11:55.363 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/api/app/account/login - - - 204 - - 1.9938ms +2021-08-21 09:11:55.364 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/api/app/account/login application/json 37 +2021-08-21 09:11:55.364 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:11:55.373 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AccountController.LoginAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:11:55.373 +08:00 [INF] Route matched with {action = "Login", controller = "Account", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[CompanyName.ProjectName.Users.Dtos.LoginOutput] LoginAsync(CompanyName.ProjectName.Users.Dtos.LoginInput) on controller CompanyName.ProjectName.Controllers.Systems.AccountController (CompanyName.ProjectName.HttpApi). +2021-08-21 09:11:55.433 +08:00 [WRN] The cookie '.AspNetCore.Identity.Application' has set 'SameSite=None' and must also set 'Secure'. +2021-08-21 09:11:55.433 +08:00 [INF] AuthenticationScheme: Identity.Application signed in. +2021-08-21 09:11:55.448 +08:00 [INF] Executing ObjectResult, writing value of type 'CompanyName.ProjectName.Users.Dtos.LoginOutput'. +2021-08-21 09:11:55.449 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AccountController.LoginAsync (CompanyName.ProjectName.HttpApi) in 75.5009ms +2021-08-21 09:11:55.449 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AccountController.LoginAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:11:55.451 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:11:55.476 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:11:55.476 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:11:55.476 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/api/app/account/login application/json 37 - 200 - application/json;+charset=utf-8 112.6157ms +2021-08-21 09:11:55.482 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/api/abp/application-configuration - - +2021-08-21 09:11:55.482 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:11:55.482 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/api/abp/application-configuration - - - 204 - - 0.4206ms +2021-08-21 09:11:55.483 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/api/abp/application-configuration - - +2021-08-21 09:11:55.484 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:11:55.486 +08:00 [INF] Successfully validated the token. +2021-08-21 09:11:55.487 +08:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController.GetAsync (Volo.Abp.AspNetCore.Mvc)' +2021-08-21 09:11:55.488 +08:00 [INF] Route matched with {area = "abp", action = "Get", controller = "AbpApplicationConfiguration", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationDto] GetAsync() on controller Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController (Volo.Abp.AspNetCore.Mvc). +2021-08-21 09:11:55.489 +08:00 [WRN] The cookie 'XSRF-TOKEN' has set 'SameSite=None' and must also set 'Secure'. +2021-08-21 09:11:55.491 +08:00 [DBG] Executing AbpApplicationConfigurationAppService.GetAsync()... +2021-08-21 09:11:55.492 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Create,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Update,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Delete,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.ManagePermissions,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Query,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Create,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Update,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Delete,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.ManagePermissions,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Users.Enable,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Query,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.AuditLogs,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.AuditLogsAuditLog,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:FeatureManagement.ManageHostFeatures,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:SettingManagement.Emailing,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.Create,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.Update,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.Delete,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.ManageFeatures,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.ManageConnectionStrings +2021-08-21 09:11:55.496 +08:00 [DBG] Not found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Create,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Update,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Delete,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.ManagePermissions,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Query,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Create,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Update,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Delete,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.ManagePermissions,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Users.Enable,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Query,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.AuditLogs,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.AuditLogsAuditLog,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:FeatureManagement.ManageHostFeatures,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:SettingManagement.Emailing,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.Create,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.Update,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.Delete,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.ManageFeatures,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.ManageConnectionStrings +2021-08-21 09:11:55.502 +08:00 [DBG] Getting not cache granted permissions from the repository for this provider name,key: U,39fe52c6-27a0-d54c-0b47-4133f044c8fa +2021-08-21 09:11:55.510 +08:00 [DBG] Setting the cache items. Count: 23 +2021-08-21 09:11:55.517 +08:00 [DBG] Finished setting the cache items. Count: 23 +2021-08-21 09:11:55.517 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles,pn:R,pk:admin,n:AbpIdentity.Roles.Create,pn:R,pk:admin,n:AbpIdentity.Roles.Update,pn:R,pk:admin,n:AbpIdentity.Roles.Delete,pn:R,pk:admin,n:AbpIdentity.Roles.ManagePermissions,pn:R,pk:admin,n:AbpIdentity.Roles.Query,pn:R,pk:admin,n:AbpIdentity.Users,pn:R,pk:admin,n:AbpIdentity.Users.Create,pn:R,pk:admin,n:AbpIdentity.Users.Update,pn:R,pk:admin,n:AbpIdentity.Users.Delete,pn:R,pk:admin,n:AbpIdentity.Users.ManagePermissions,pn:R,pk:admin,n:AbpIdentity.Users.Users.Enable,pn:R,pk:admin,n:AbpIdentity.Users.Query,pn:R,pk:admin,n:AbpIdentity.AuditLogs,pn:R,pk:admin,n:AbpIdentity.AuditLogsAuditLog,pn:R,pk:admin,n:FeatureManagement.ManageHostFeatures,pn:R,pk:admin,n:SettingManagement.Emailing,pn:R,pk:admin,n:AbpTenantManagement.Tenants,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Create,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Update,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Delete,pn:R,pk:admin,n:AbpTenantManagement.Tenants.ManageFeatures,pn:R,pk:admin,n:AbpTenantManagement.Tenants.ManageConnectionStrings +2021-08-21 09:11:55.519 +08:00 [DBG] Not found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles,pn:R,pk:admin,n:AbpIdentity.Roles.Create,pn:R,pk:admin,n:AbpIdentity.Roles.Update,pn:R,pk:admin,n:AbpIdentity.Roles.Delete,pn:R,pk:admin,n:AbpIdentity.Roles.ManagePermissions,pn:R,pk:admin,n:AbpIdentity.Roles.Query,pn:R,pk:admin,n:AbpIdentity.Users,pn:R,pk:admin,n:AbpIdentity.Users.Create,pn:R,pk:admin,n:AbpIdentity.Users.Update,pn:R,pk:admin,n:AbpIdentity.Users.Delete,pn:R,pk:admin,n:AbpIdentity.Users.ManagePermissions,pn:R,pk:admin,n:AbpIdentity.Users.Users.Enable,pn:R,pk:admin,n:AbpIdentity.Users.Query,pn:R,pk:admin,n:AbpIdentity.AuditLogs,pn:R,pk:admin,n:AbpIdentity.AuditLogsAuditLog,pn:R,pk:admin,n:FeatureManagement.ManageHostFeatures,pn:R,pk:admin,n:SettingManagement.Emailing,pn:R,pk:admin,n:AbpTenantManagement.Tenants,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Create,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Update,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Delete,pn:R,pk:admin,n:AbpTenantManagement.Tenants.ManageFeatures,pn:R,pk:admin,n:AbpTenantManagement.Tenants.ManageConnectionStrings +2021-08-21 09:11:55.519 +08:00 [DBG] Getting not cache granted permissions from the repository for this provider name,key: R,admin +2021-08-21 09:11:55.526 +08:00 [DBG] Setting the cache items. Count: 23 +2021-08-21 09:11:55.532 +08:00 [DBG] Finished setting the cache items. Count: 23 +2021-08-21 09:11:55.579 +08:00 [DBG] Executed AbpApplicationConfigurationAppService.GetAsync(). +2021-08-21 09:11:55.579 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationDto'. +2021-08-21 09:11:55.581 +08:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController.GetAsync (Volo.Abp.AspNetCore.Mvc) in 93.4232ms +2021-08-21 09:11:55.581 +08:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController.GetAsync (Volo.Abp.AspNetCore.Mvc)' +2021-08-21 09:11:55.584 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:11:55.585 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:11:55.587 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:11:55.602 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/api/abp/application-configuration - - - 200 - application/json;+charset=utf-8 118.3582ms +2021-08-21 09:11:56.128 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:11:56.129 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:11:56.130 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 1.1821ms +2021-08-21 09:11:56.131 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:11:56.131 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:11:56.133 +08:00 [INF] Successfully validated the token. +2021-08-21 09:11:56.155 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:11:56.155 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:11:56.155 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 24.3360ms +2021-08-21 09:12:15.565 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:12:15.565 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:12:15.565 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4975ms +2021-08-21 09:12:15.568 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:12:15.569 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:12:15.571 +08:00 [INF] Successfully validated the token. +2021-08-21 09:12:15.595 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:12:15.596 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:12:15.596 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 27.7917ms +2021-08-21 09:12:15.631 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:12:15.632 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:12:15.632 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5015ms +2021-08-21 09:12:15.634 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:12:15.634 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:12:15.637 +08:00 [INF] Successfully validated the token. +2021-08-21 09:12:15.660 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:12:15.660 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:12:15.660 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.6871ms +2021-08-21 09:12:22.762 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:12:52.787 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:13:01.093 +08:00 [DBG] 870 recurring job(s) processed by scheduler. +2021-08-21 09:13:02.409 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:13:02.409 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:13:02.409 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5843ms +2021-08-21 09:13:02.411 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:13:02.411 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:13:02.414 +08:00 [INF] Successfully validated the token. +2021-08-21 09:13:02.448 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:13:02.448 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:13:02.448 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 37.1168ms +2021-08-21 09:13:02.524 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 09:13:02.524 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:13:02.524 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4942ms +2021-08-21 09:13:02.526 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 09:13:02.527 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:13:02.529 +08:00 [INF] Successfully validated the token. +2021-08-21 09:13:02.531 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:13:02.531 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 09:13:02.587 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:13:02.589 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 57.7149ms +2021-08-21 09:13:02.589 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:13:02.595 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:13:02.626 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:13:02.626 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:13:02.626 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 100.0519ms +2021-08-21 09:13:22.798 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:13:33.048 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:13:33.049 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:13:33.049 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4419ms +2021-08-21 09:13:33.051 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:13:33.051 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:13:33.053 +08:00 [INF] Successfully validated the token. +2021-08-21 09:13:33.092 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:13:33.092 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:13:33.093 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 41.9783ms +2021-08-21 09:13:33.113 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:13:33.114 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:13:33.114 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4662ms +2021-08-21 09:13:33.116 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:13:33.117 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:13:33.119 +08:00 [INF] Successfully validated the token. +2021-08-21 09:13:33.146 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:13:33.146 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:13:33.147 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 30.4689ms +2021-08-21 09:13:48.957 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:13:48.958 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:13:48.958 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5995ms +2021-08-21 09:13:48.960 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:13:48.960 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:13:48.962 +08:00 [INF] Successfully validated the token. +2021-08-21 09:13:48.999 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:13:48.999 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:13:48.999 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 39.5968ms +2021-08-21 09:13:49.068 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 09:13:49.069 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:13:49.069 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4813ms +2021-08-21 09:13:49.071 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 09:13:49.071 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:13:49.074 +08:00 [INF] Successfully validated the token. +2021-08-21 09:13:49.075 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:13:49.075 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 09:13:49.125 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:13:49.126 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 50.8126ms +2021-08-21 09:13:49.126 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:13:49.131 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:13:49.164 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:13:49.164 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:13:49.164 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 93.4090ms +2021-08-21 09:13:52.818 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:13:59.979 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:13:59.979 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:13:59.979 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4482ms +2021-08-21 09:13:59.981 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:13:59.981 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:13:59.983 +08:00 [INF] Successfully validated the token. +2021-08-21 09:14:00.010 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:14:00.010 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:14:00.010 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 29.2511ms +2021-08-21 09:14:00.043 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:14:00.043 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:14:00.043 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4873ms +2021-08-21 09:14:00.045 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:14:00.045 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:14:00.047 +08:00 [INF] Successfully validated the token. +2021-08-21 09:14:00.070 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:14:00.070 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:14:00.070 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 25.0739ms +2021-08-21 09:14:22.848 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:14:32.799 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:14:32.800 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:14:32.800 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6112ms +2021-08-21 09:14:32.802 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:14:32.802 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:14:32.805 +08:00 [INF] Successfully validated the token. +2021-08-21 09:14:32.831 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:14:32.831 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:14:32.832 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 29.7983ms +2021-08-21 09:14:32.914 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 09:14:32.914 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:14:32.914 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4474ms +2021-08-21 09:14:32.916 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 09:14:32.916 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:14:32.919 +08:00 [INF] Successfully validated the token. +2021-08-21 09:14:32.920 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:14:32.920 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 09:14:32.970 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:14:32.971 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 51.1515ms +2021-08-21 09:14:32.971 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:14:32.977 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:14:33.007 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:14:33.007 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:14:33.007 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 91.4752ms +2021-08-21 09:14:52.878 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:14:54.020 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:14:54.020 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:14:54.020 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6142ms +2021-08-21 09:14:54.023 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:14:54.023 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:14:54.026 +08:00 [INF] Successfully validated the token. +2021-08-21 09:14:54.048 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:14:54.048 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:14:54.048 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 25.3632ms +2021-08-21 09:14:54.136 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 09:14:54.136 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:14:54.136 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.5750ms +2021-08-21 09:14:54.138 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 09:14:54.138 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:14:54.142 +08:00 [INF] Successfully validated the token. +2021-08-21 09:14:54.144 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:14:54.144 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 09:14:54.199 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:14:54.200 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 55.9185ms +2021-08-21 09:14:54.200 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:14:54.206 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:14:54.234 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:14:54.234 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:14:54.235 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 96.4855ms +2021-08-21 09:15:01.043 +08:00 [DBG] 795 recurring job(s) processed by scheduler. +2021-08-21 09:15:22.894 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:15:52.906 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:16:04.838 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:16:04.839 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:16:04.839 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5209ms +2021-08-21 09:16:04.841 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:16:04.841 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:16:04.844 +08:00 [INF] Successfully validated the token. +2021-08-21 09:16:04.867 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:16:04.867 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:16:04.868 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 27.0477ms +2021-08-21 09:16:04.966 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 09:16:04.967 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:16:04.967 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.6976ms +2021-08-21 09:16:04.969 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 09:16:04.969 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:16:04.972 +08:00 [INF] Successfully validated the token. +2021-08-21 09:16:04.973 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:16:04.973 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 09:16:05.046 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:16:05.047 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 73.2644ms +2021-08-21 09:16:05.047 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:16:05.054 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:16:05.097 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:16:05.097 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:16:05.097 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 128.1572ms +2021-08-21 09:16:08.439 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:16:08.439 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:16:08.439 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6022ms +2021-08-21 09:16:08.442 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:16:08.442 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:16:08.444 +08:00 [INF] Successfully validated the token. +2021-08-21 09:16:08.471 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:16:08.471 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:16:08.471 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 29.3920ms +2021-08-21 09:16:08.593 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 09:16:08.593 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:16:08.597 +08:00 [INF] Successfully validated the token. +2021-08-21 09:16:08.599 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:16:08.599 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 09:16:08.785 +08:00 [ERR] Failed executing DbCommand (144ms) [Parameters=[@__ef_filter__p_0='?' (DbType = Boolean), @__p_1='?' (DbType = Int32), @__p_0='?' (DbType = Int32)], CommandType='"Text"', CommandTimeout='30'] +SELECT `t`.`Id`, `t`.`AbsoluteRefreshTokenLifetime`, `t`.`AccessTokenLifetime`, `t`.`AccessTokenType`, `t`.`AllowAccessTokensViaBrowser`, `t`.`AllowOfflineAccess`, `t`.`AllowPlainTextPkce`, `t`.`AllowRememberConsent`, `t`.`AllowedIdentityTokenSigningAlgorithms`, `t`.`AlwaysIncludeUserClaimsInIdToken`, `t`.`AlwaysSendClientClaims`, `t`.`AuthorizationCodeLifetime`, `t`.`BackChannelLogoutSessionRequired`, `t`.`BackChannelLogoutUri`, `t`.`ClientClaimsPrefix`, `t`.`ClientId`, `t`.`ClientName`, `t`.`ClientUri`, `t`.`ConcurrencyStamp`, `t`.`ConsentLifetime`, `t`.`CreationTime`, `t`.`CreatorId`, `t`.`DeleterId`, `t`.`DeletionTime`, `t`.`Description`, `t`.`DeviceCodeLifetime`, `t`.`EnableLocalLogin`, `t`.`Enabled`, `t`.`ExtraProperties`, `t`.`FrontChannelLogoutSessionRequired`, `t`.`FrontChannelLogoutUri`, `t`.`IdentityTokenLifetime`, `t`.`IncludeJwtId`, `t`.`IsDeleted`, `t`.`LastModificationTime`, `t`.`LastModifierId`, `t`.`LogoUri`, `t`.`PairWiseSubjectSalt`, `t`.`ProtocolType`, `t`.`RefreshTokenExpiration`, `t`.`RefreshTokenUsage`, `t`.`RequireClientSecret`, `t`.`RequireConsent`, `t`.`RequirePkce`, `t`.`RequireRequestObject`, `t`.`SlidingRefreshTokenLifetime`, `t`.`UpdateAccessTokenClaimsOnRefresh`, `t`.`UserCodeType`, `t`.`UserSsoLifetime` +FROM ( + SELECT `i`.`Id`, `i`.`AbsoluteRefreshTokenLifetime`, `i`.`AccessTokenLifetime`, `i`.`AccessTokenType`, `i`.`AllowAccessTokensViaBrowser`, `i`.`AllowOfflineAccess`, `i`.`AllowPlainTextPkce`, `i`.`AllowRememberConsent`, `i`.`AllowedIdentityTokenSigningAlgorithms`, `i`.`AlwaysIncludeUserClaimsInIdToken`, `i`.`AlwaysSendClientClaims`, `i`.`AuthorizationCodeLifetime`, `i`.`BackChannelLogoutSessionRequired`, `i`.`BackChannelLogoutUri`, `i`.`ClientClaimsPrefix`, `i`.`ClientId`, `i`.`ClientName`, `i`.`ClientUri`, `i`.`ConcurrencyStamp`, `i`.`ConsentLifetime`, `i`.`CreationTime`, `i`.`CreatorId`, `i`.`DeleterId`, `i`.`DeletionTime`, `i`.`Description`, `i`.`DeviceCodeLifetime`, `i`.`EnableLocalLogin`, `i`.`Enabled`, `i`.`ExtraProperties`, `i`.`FrontChannelLogoutSessionRequired`, `i`.`FrontChannelLogoutUri`, `i`.`IdentityTokenLifetime`, `i`.`IncludeJwtId`, `i`.`IsDeleted`, `i`.`LastModificationTime`, `i`.`LastModifierId`, `i`.`LogoUri`, `i`.`PairWiseSubjectSalt`, `i`.`ProtocolType`, `i`.`RefreshTokenExpiration`, `i`.`RefreshTokenUsage`, `i`.`RequireClientSecret`, `i`.`RequireConsent`, `i`.`RequirePkce`, `i`.`RequireRequestObject`, `i`.`SlidingRefreshTokenLifetime`, `i`.`UpdateAccessTokenClaimsOnRefresh`, `i`.`UserCodeType`, `i`.`UserSsoLifetime` + FROM `IdentityServerClients` AS `i` + WHERE @__ef_filter__p_0 OR NOT (`i`.`IsDeleted`) + ORDER BY `i`.`CreationTime` + LIMIT @__p_1 OFFSET @__p_0 +) AS `t` +ORDER BY `t`.`CreationTime`, `t`.`Id` +2021-08-21 09:16:08.908 +08:00 [ERR] An exception occurred while iterating over the results of a query for context type 'Volo.Abp.IdentityServer.EntityFrameworkCore.IdentityServerDbContext'. +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 19 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 310 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 304 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.InitializeReaderAsync(DbContext _, Boolean result, CancellationToken cancellationToken) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.MoveNextAsync() +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 19 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 310 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 304 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.InitializeReaderAsync(DbContext _, Boolean result, CancellationToken cancellationToken) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.MoveNextAsync() +2021-08-21 09:16:09.169 +08:00 [ERR] An error occurred using a transaction. +2021-08-21 09:16:09.210 +08:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +{ + "code": null, + "message": "\u5BF9\u4E0D\u8D77,\u5728\u5904\u7406\u4F60\u7684\u8BF7\u6C42\u671F\u95F4,\u4EA7\u751F\u4E86\u4E00\u4E2A\u670D\u52A1\u5668\u5185\u90E8\u9519\u8BEF!", + "details": null, + "data": {}, + "validationErrors": null +} + +2021-08-21 09:16:09.211 +08:00 [ERR] The operation was canceled. +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 19 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 310 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 304 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.InitializeReaderAsync(DbContext _, Boolean result, CancellationToken cancellationToken) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.MoveNextAsync() + at Microsoft.EntityFrameworkCore.EntityFrameworkQueryableExtensions.ToListAsync[TSource](IQueryable`1 source, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.EntityFrameworkQueryableExtensions.ToListAsync[TSource](IQueryable`1 source, CancellationToken cancellationToken) + at Volo.Abp.IdentityServer.Clients.ClientRepository.GetListAsync(String sorting, Int32 skipCount, Int32 maxResultCount, String filter, Boolean includeDetails, CancellationToken cancellationToken) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at CompanyName.ProjectName.IdentityServers.Clients.IdentityServerClientAppService.GetListAsync(PagingClientListInput input) in D:\abp\aspnet-core\services\src\CompanyName.ProjectName.Application\IdentityServers\Clients\IdentityServerClientAppService.cs:line 22 + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.GlobalFeatures.GlobalFeatureInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Auditing.AuditingInterceptor.ProceedByLoggingAsync(IAbpMethodInvocation invocation, IAuditingHelper auditingHelper, IAuditLogScope auditLogScope) + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Validation.ValidationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at lambda_method1835(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) +2021-08-21 09:16:09.218 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2021-08-21 09:16:09.220 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 620.0848ms +2021-08-21 09:16:09.220 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:16:09.311 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:16:09.311 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:16:09.312 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 500 - application/json;+charset=utf-8 719.0384ms +2021-08-21 09:16:10.584 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:16:10.584 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:16:10.584 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5445ms +2021-08-21 09:16:10.586 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:16:10.586 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:16:10.589 +08:00 [INF] Successfully validated the token. +2021-08-21 09:16:10.612 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:16:10.612 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:16:10.612 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 25.9067ms +2021-08-21 09:16:10.724 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 09:16:10.725 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:16:10.725 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.5472ms +2021-08-21 09:16:10.728 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 09:16:10.728 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:16:10.731 +08:00 [INF] Successfully validated the token. +2021-08-21 09:16:10.732 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:16:10.732 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 09:16:10.784 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:16:10.785 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 52.8496ms +2021-08-21 09:16:10.785 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:16:10.792 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:16:10.823 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:16:10.823 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:16:10.824 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 96.2568ms +2021-08-21 09:16:22.976 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:16:50.462 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 09:16:53.006 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:17:01.312 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 09:17:23.021 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:17:53.047 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:18:23.066 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:18:32.081 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:18:32.081 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:18:32.081 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5808ms +2021-08-21 09:18:32.084 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:18:32.084 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:18:32.088 +08:00 [INF] Successfully validated the token. +2021-08-21 09:18:32.117 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:18:32.117 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:18:32.117 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 33.6369ms +2021-08-21 09:18:32.328 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 09:18:32.328 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:18:32.329 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4271ms +2021-08-21 09:18:32.330 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 09:18:32.331 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:18:32.333 +08:00 [INF] Successfully validated the token. +2021-08-21 09:18:32.334 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:18:32.334 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 09:18:32.387 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:18:32.388 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 53.6217ms +2021-08-21 09:18:32.388 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:18:32.393 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:18:32.419 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:18:32.419 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:18:32.420 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 89.2161ms +2021-08-21 09:18:37.309 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:18:37.309 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:18:37.309 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4782ms +2021-08-21 09:18:37.311 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:18:37.311 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:18:37.314 +08:00 [INF] Successfully validated the token. +2021-08-21 09:18:37.336 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:18:37.336 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:18:37.337 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 25.3493ms +2021-08-21 09:18:37.437 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 09:18:37.438 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:18:37.438 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4614ms +2021-08-21 09:18:37.439 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 09:18:37.440 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:18:37.442 +08:00 [INF] Successfully validated the token. +2021-08-21 09:18:37.443 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:18:37.443 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 09:18:37.494 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:18:37.495 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 51.6303ms +2021-08-21 09:18:37.495 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:18:37.500 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:18:37.525 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:18:37.525 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:18:37.525 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 85.8599ms +2021-08-21 09:18:40.623 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:18:40.623 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:18:40.623 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4442ms +2021-08-21 09:18:40.625 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:18:40.625 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:18:40.628 +08:00 [INF] Successfully validated the token. +2021-08-21 09:18:40.661 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:18:40.661 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:18:40.661 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 36.1664ms +2021-08-21 09:18:44.872 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:18:44.873 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:18:44.873 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.7279ms +2021-08-21 09:18:44.875 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:18:44.876 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:18:44.878 +08:00 [INF] Successfully validated the token. +2021-08-21 09:18:44.900 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:18:44.900 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:18:44.900 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 25.0395ms +2021-08-21 09:18:45.318 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 09:18:45.319 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:18:45.319 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4701ms +2021-08-21 09:18:45.320 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 09:18:45.321 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:18:45.323 +08:00 [INF] Successfully validated the token. +2021-08-21 09:18:45.324 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:18:45.324 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 09:18:45.375 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:18:45.376 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 51.3893ms +2021-08-21 09:18:45.376 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:18:45.380 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:18:45.418 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:18:45.419 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:18:45.419 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 98.4225ms +2021-08-21 09:18:53.111 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:19:01.620 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 09:19:18.858 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:19:18.858 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:19:18.858 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5077ms +2021-08-21 09:19:18.860 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:19:18.861 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:19:18.863 +08:00 [INF] Successfully validated the token. +2021-08-21 09:19:18.897 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:19:18.897 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:19:18.897 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 36.8029ms +2021-08-21 09:19:18.983 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 09:19:18.984 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:19:18.984 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.6457ms +2021-08-21 09:19:18.986 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 09:19:18.986 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:19:18.989 +08:00 [INF] Successfully validated the token. +2021-08-21 09:19:18.990 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:19:18.990 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 09:19:19.042 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:19:19.043 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 52.5878ms +2021-08-21 09:19:19.043 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:19:19.048 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:19:19.084 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:19:19.084 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:19:19.084 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 98.2500ms +2021-08-21 09:19:23.139 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:19:53.155 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:20:23.188 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:20:39.801 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:20:39.801 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:20:39.802 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4377ms +2021-08-21 09:20:39.803 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:20:39.803 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:20:39.806 +08:00 [INF] Successfully validated the token. +2021-08-21 09:20:39.838 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:20:39.838 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:20:39.839 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 35.5708ms +2021-08-21 09:20:40.331 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 09:20:40.331 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:20:40.332 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.5726ms +2021-08-21 09:20:40.335 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 09:20:40.335 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:20:40.338 +08:00 [INF] Successfully validated the token. +2021-08-21 09:20:40.341 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:20:40.341 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 09:20:40.401 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:20:40.402 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 60.3736ms +2021-08-21 09:20:40.402 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:20:40.408 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:20:40.449 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:20:40.449 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:20:40.450 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 114.9886ms +2021-08-21 09:20:52.808 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/create - - +2021-08-21 09:20:52.808 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:20:52.808 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/create - - - 204 - - 0.5216ms +2021-08-21 09:20:52.810 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/create application/json 56 +2021-08-21 09:20:52.810 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:20:52.812 +08:00 [INF] Successfully validated the token. +2021-08-21 09:20:52.813 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:20:52.827 +08:00 [INF] Route matched with {action = "Create", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task CreateAsync(CompanyName.ProjectName.IdentityServers.Clients.CreateClientInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 09:20:52.870 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.CreateAsync (CompanyName.ProjectName.HttpApi) in 42.9263ms +2021-08-21 09:20:52.871 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:20:52.912 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:20:52.912 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:20:52.963 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:20:52.963 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:20:52.963 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/create application/json 56 - 204 - - 153.4359ms +2021-08-21 09:20:53.233 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:20:55.655 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 09:20:55.655 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:20:55.656 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4203ms +2021-08-21 09:20:55.657 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 09:20:55.657 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:20:55.660 +08:00 [INF] Successfully validated the token. +2021-08-21 09:20:55.661 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:20:55.661 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 09:20:55.712 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:20:55.713 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 52.0753ms +2021-08-21 09:20:55.713 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:20:55.717 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:20:55.753 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:20:55.753 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:20:55.753 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 96.2800ms +2021-08-21 09:20:56.424 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 09:20:56.424 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:20:56.426 +08:00 [INF] Successfully validated the token. +2021-08-21 09:20:56.427 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:20:56.428 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 09:20:56.478 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:20:56.479 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 51.5926ms +2021-08-21 09:20:56.479 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:20:56.483 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:20:56.510 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:20:56.510 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:20:56.510 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 86.1661ms +2021-08-21 09:20:56.621 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 09:20:56.621 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:20:56.623 +08:00 [INF] Successfully validated the token. +2021-08-21 09:20:56.625 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:20:56.625 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 09:20:56.676 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:20:56.677 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 51.9986ms +2021-08-21 09:20:56.677 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:20:56.681 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:20:56.707 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:20:56.707 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:20:56.707 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 86.2672ms +2021-08-21 09:21:23.261 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:21:23.479 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 09:21:23.480 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:21:23.480 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4686ms +2021-08-21 09:21:23.482 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 09:21:23.482 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:21:23.485 +08:00 [INF] Successfully validated the token. +2021-08-21 09:21:23.486 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:21:23.486 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 09:21:23.537 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:21:23.538 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 51.599ms +2021-08-21 09:21:23.538 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:21:23.544 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:21:23.568 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:21:23.568 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:21:23.568 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 86.2434ms +2021-08-21 09:21:33.577 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 09:21:49.851 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 09:21:50.506 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 09:21:53.317 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:21:54.893 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 09:21:54.893 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:21:54.893 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.8305ms +2021-08-21 09:21:54.896 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 09:21:54.897 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:21:54.901 +08:00 [INF] Successfully validated the token. +2021-08-21 09:21:54.903 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:21:54.903 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 09:21:54.956 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:21:54.957 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 54.1375ms +2021-08-21 09:21:54.958 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:21:54.963 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:21:54.993 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:21:54.993 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:21:54.994 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 97.2792ms +2021-08-21 09:22:01.047 +08:00 [DBG] 630 recurring job(s) processed by scheduler. +2021-08-21 09:22:20.078 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/create - - +2021-08-21 09:22:20.078 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:22:20.078 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/create - - - 204 - - 0.4190ms +2021-08-21 09:22:20.080 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/create application/json 57 +2021-08-21 09:22:20.080 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:22:20.082 +08:00 [INF] Successfully validated the token. +2021-08-21 09:22:20.083 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:22:20.083 +08:00 [INF] Route matched with {action = "Create", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task CreateAsync(CompanyName.ProjectName.IdentityServers.Clients.CreateClientInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 09:22:20.108 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.CreateAsync (CompanyName.ProjectName.HttpApi) in 24.5558ms +2021-08-21 09:22:20.108 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:22:20.119 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:22:20.119 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:22:20.148 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:22:20.148 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:22:20.148 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/create application/json 57 - 204 - - 68.1789ms +2021-08-21 09:22:23.345 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:22:53.364 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:23:01.015 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 09:23:01.015 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:23:01.015 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4285ms +2021-08-21 09:23:01.017 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 09:23:01.017 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:23:01.020 +08:00 [INF] Successfully validated the token. +2021-08-21 09:23:01.021 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:23:01.022 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 09:23:01.069 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:23:01.070 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 48.1256ms +2021-08-21 09:23:01.070 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:23:01.075 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:23:01.105 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:23:01.105 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:23:01.106 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 88.8113ms +2021-08-21 09:23:01.864 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 09:23:01.864 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:23:01.866 +08:00 [INF] Successfully validated the token. +2021-08-21 09:23:01.867 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:23:01.868 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 09:23:01.915 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:23:01.916 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 48.5685ms +2021-08-21 09:23:01.916 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:23:01.921 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:23:01.948 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:23:01.948 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:23:01.948 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 84.4276ms +2021-08-21 09:23:05.734 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 09:23:05.734 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:23:05.736 +08:00 [INF] Successfully validated the token. +2021-08-21 09:23:05.737 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:23:05.737 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 09:23:05.783 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:23:05.785 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 47.071ms +2021-08-21 09:23:05.785 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:23:05.789 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:23:05.818 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:23:05.819 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:23:05.819 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 85.1596ms +2021-08-21 09:23:18.507 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/create - - +2021-08-21 09:23:18.508 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:23:18.508 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/create - - - 204 - - 0.5013ms +2021-08-21 09:23:18.510 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/create application/json 60 +2021-08-21 09:23:18.510 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:23:18.513 +08:00 [INF] Successfully validated the token. +2021-08-21 09:23:18.514 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:23:18.514 +08:00 [INF] Route matched with {action = "Create", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task CreateAsync(CompanyName.ProjectName.IdentityServers.Clients.CreateClientInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 09:23:18.545 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.CreateAsync (CompanyName.ProjectName.HttpApi) in 30.5777ms +2021-08-21 09:23:18.545 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:23:18.555 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:23:18.555 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:23:18.585 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:23:18.585 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:23:18.586 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/create application/json 60 - 204 - - 75.6579ms +2021-08-21 09:23:18.625 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 09:23:18.626 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:23:18.626 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.7286ms +2021-08-21 09:23:18.629 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 09:23:18.629 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:23:18.633 +08:00 [INF] Successfully validated the token. +2021-08-21 09:23:18.634 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:23:18.635 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 09:23:18.692 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:23:18.693 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 58.5448ms +2021-08-21 09:23:18.693 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:23:18.700 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:23:18.728 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:23:18.728 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:23:18.728 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 99.6269ms +2021-08-21 09:23:23.426 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:23:23.783 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/create - - +2021-08-21 09:23:23.783 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:23:23.783 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/create - - - 204 - - 0.4552ms +2021-08-21 09:23:23.785 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/create application/json 60 +2021-08-21 09:23:23.785 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:23:23.788 +08:00 [INF] Successfully validated the token. +2021-08-21 09:23:23.790 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:23:23.790 +08:00 [INF] Route matched with {action = "Create", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task CreateAsync(CompanyName.ProjectName.IdentityServers.Clients.CreateClientInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 09:23:23.817 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.CreateAsync (CompanyName.ProjectName.HttpApi) in 26.5619ms +2021-08-21 09:23:23.817 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:23:23.828 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:23:23.828 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:23:23.856 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:23:23.856 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:23:23.857 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/create application/json 60 - 204 - - 71.6912ms +2021-08-21 09:23:23.893 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 09:23:23.894 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:23:23.894 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4086ms +2021-08-21 09:23:23.895 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 09:23:23.896 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:23:23.898 +08:00 [INF] Successfully validated the token. +2021-08-21 09:23:23.899 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:23:23.900 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 09:23:23.949 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:23:23.951 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 50.9789ms +2021-08-21 09:23:23.951 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:23:23.956 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:23:23.981 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:23:23.981 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:23:23.982 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 86.3140ms +2021-08-21 09:23:29.171 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/create - - +2021-08-21 09:23:29.172 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:23:29.172 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/create - - - 204 - - 0.5119ms +2021-08-21 09:23:29.174 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/create application/json 60 +2021-08-21 09:23:29.174 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:23:29.177 +08:00 [INF] Successfully validated the token. +2021-08-21 09:23:29.179 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:23:29.179 +08:00 [INF] Route matched with {action = "Create", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task CreateAsync(CompanyName.ProjectName.IdentityServers.Clients.CreateClientInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 09:23:29.204 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.CreateAsync (CompanyName.ProjectName.HttpApi) in 25.1533ms +2021-08-21 09:23:29.205 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:23:29.217 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:23:29.217 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:23:29.248 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:23:29.248 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:23:29.248 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/create application/json 60 - 204 - - 74.4420ms +2021-08-21 09:23:29.283 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 09:23:29.284 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:23:29.284 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.5677ms +2021-08-21 09:23:29.286 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 09:23:29.286 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:23:29.288 +08:00 [INF] Successfully validated the token. +2021-08-21 09:23:29.290 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:23:29.290 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 09:23:29.342 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:23:29.343 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 53.0176ms +2021-08-21 09:23:29.343 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:23:29.350 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:23:29.373 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:23:29.373 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:23:29.373 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 87.5553ms +2021-08-21 09:23:34.070 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 09:23:50.437 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 09:23:53.434 +08:00 [DBG] Server szqh003802a:19332:52259623 heartbeat successfully sent +2021-08-21 09:24:01.048 +08:00 [DBG] 630 recurring job(s) processed by scheduler. +2021-08-21 09:25:11.564 +08:00 [INF] Starting CompanyName.ProjectName.HttpApi.Host. +2021-08-21 09:25:15.800 +08:00 [INF] User profile is available. Using 'C:\Users\wangjun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. +2021-08-21 09:25:15.915 +08:00 [INF] Loaded ABP modules: +2021-08-21 09:25:15.915 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiHostModule +2021-08-21 09:25:15.915 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiModule +2021-08-21 09:25:15.915 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationContractsModule +2021-08-21 09:25:15.915 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainSharedModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainSharedModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Data.AbpDataModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainSharedModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule +2021-08-21 09:25:15.915 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationContractsModule +2021-08-21 09:25:15.915 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainSharedModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.UI.AbpUiModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule +2021-08-21 09:25:15.915 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementHttpApiModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Caching.StackExchangeRedis.AbpCachingStackExchangeRedisModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule +2021-08-21 09:25:15.915 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationModule +2021-08-21 09:25:15.915 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.PermissionManagement.IdentityServer.AbpPermissionManagementDomainIdentityServerModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule +2021-08-21 09:25:15.915 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule +2021-08-21 09:25:15.915 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainModule +2021-08-21 09:25:15.915 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainSharedModule +2021-08-21 09:25:15.915 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationModule +2021-08-21 09:25:15.915 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreDbMigrationsModule +2021-08-21 09:25:15.915 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.IdentityServer.EntityFrameworkCore.AbpIdentityServerEntityFrameworkCoreModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.MySQL.AbpEntityFrameworkCoreMySQLModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.BackgroundJobs.EntityFrameworkCore.AbpBackgroundJobsEntityFrameworkCoreModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule +2021-08-21 09:25:15.915 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.FreeSqlMySql.QueryManagementFreeSqlMySqlModule +2021-08-21 09:25:15.915 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.EntityFrameworkCore.DataDictionaryManagementEntityFrameworkCoreModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2021-08-21 09:25:15.915 +08:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule +2021-08-21 09:25:15.916 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule +2021-08-21 09:25:15.916 +08:00 [INF] - Volo.Abp.BackgroundJobs.Hangfire.AbpBackgroundJobsHangfireModule +2021-08-21 09:25:15.916 +08:00 [INF] - Volo.Abp.Hangfire.AbpHangfireModule +2021-08-21 09:25:15.996 +08:00 [DBG] Started background worker: Volo.Abp.BackgroundJobs.BackgroundJobWorker +2021-08-21 09:25:15.998 +08:00 [DBG] Started background worker: Volo.Abp.IdentityServer.Tokens.TokenCleanupBackgroundWorker +2021-08-21 09:25:16.141 +08:00 [INF] DB tables already exist. Exit install +2021-08-21 09:25:16.154 +08:00 [INF] Starting Hangfire Server using job storage: 'Server: localhost@CompanyNameProjectNameHangfireDB' +2021-08-21 09:25:16.154 +08:00 [INF] Using the following options for SQL Server job storage: +2021-08-21 09:25:16.154 +08:00 [INF] Queue poll interval: 00:00:15. +2021-08-21 09:25:16.155 +08:00 [INF] Using the following options for Hangfire Server: + Worker count: 20 + Listening queues: 'default' + Shutdown timeout: 00:00:15 + Schedule polling interval: 00:00:15 +2021-08-21 09:25:16.178 +08:00 [DBG] Execution loop BackgroundServerProcess:99d311bf has started in 5.1028 ms +2021-08-21 09:25:16.322 +08:00 [INF] Server szqh003802a:21836:bf072b96 successfully announced in 105.739 ms +2021-08-21 09:25:16.333 +08:00 [INF] Server szqh003802a:21836:bf072b96 is starting the registered dispatchers: ServerWatchdog, ServerJobCancellationWatcher, ExpirationManager, CountersAggregator, Worker, DelayedJobScheduler, RecurringJobScheduler... +2021-08-21 09:25:16.333 +08:00 [DBG] Execution loop ServerHeartbeatProcess:dd675a26 has started in 10.4925 ms +2021-08-21 09:25:16.339 +08:00 [DBG] Execution loop ServerWatchdog:e6b7702e has started in 5.5708 ms +2021-08-21 09:25:16.341 +08:00 [DBG] Execution loop ServerJobCancellationWatcher:6cb1c668 has started in 4.1572 ms +2021-08-21 09:25:16.350 +08:00 [DBG] Execution loop ExpirationManager:b2c13629 has started in 10.3333 ms +2021-08-21 09:25:16.353 +08:00 [DBG] Execution loop CountersAggregator:b9daeba8 has started in 9.3272 ms +2021-08-21 09:25:16.354 +08:00 [DBG] Execution loop Worker:34e2c5ef has started in 3.8243 ms +2021-08-21 09:25:16.356 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 09:25:16.356 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-08-21 09:25:16.357 +08:00 [DBG] Execution loop Worker:9b46a7c0 has started in 6.8702 ms +2021-08-21 09:25:16.358 +08:00 [DBG] Execution loop Worker:d328772f has started in 7.91 ms +2021-08-21 09:25:16.359 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-08-21 09:25:16.360 +08:00 [DBG] Execution loop Worker:a76d877c has started in 9.997 ms +2021-08-21 09:25:16.363 +08:00 [DBG] Execution loop Worker:50b30b4b has started in 12.4883 ms +2021-08-21 09:25:16.365 +08:00 [DBG] Execution loop Worker:f3ce7d50 has started in 14.9625 ms +2021-08-21 09:25:16.369 +08:00 [DBG] Execution loop Worker:34a8280a has started in 19.0922 ms +2021-08-21 09:25:16.373 +08:00 [DBG] Execution loop Worker:47754573 has started in 21.8114 ms +2021-08-21 09:25:16.378 +08:00 [DBG] Execution loop Worker:07923972 has started in 27.8757 ms +2021-08-21 09:25:16.390 +08:00 [DBG] Execution loop Worker:766dc1eb has started in 39.9989 ms +2021-08-21 09:25:16.392 +08:00 [DBG] Execution loop Worker:af401ddf has started in 41.7409 ms +2021-08-21 09:25:16.397 +08:00 [DBG] Execution loop Worker:b83b0666 has started in 46.6429 ms +2021-08-21 09:25:16.401 +08:00 [DBG] Execution loop Worker:7f066ab2 has started in 51.2057 ms +2021-08-21 09:25:16.404 +08:00 [DBG] removed records count=0 +2021-08-21 09:25:16.406 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-08-21 09:25:16.406 +08:00 [DBG] Execution loop Worker:fdf1077c has started in 55.8135 ms +2021-08-21 09:25:16.410 +08:00 [DBG] Execution loop Worker:399f2f77 has started in 59.808 ms +2021-08-21 09:25:16.414 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-08-21 09:25:16.417 +08:00 [DBG] Execution loop Worker:ebc9d493 has started in 65.892 ms +2021-08-21 09:25:16.420 +08:00 [DBG] Execution loop Worker:eb251e71 has started in 69.0539 ms +2021-08-21 09:25:16.423 +08:00 [DBG] Execution loop Worker:91db3be2 has started in 72.5724 ms +2021-08-21 09:25:16.425 +08:00 [DBG] Execution loop Worker:fdc9d273 has started in 75.3809 ms +2021-08-21 09:25:16.430 +08:00 [DBG] Execution loop Worker:baab004f has started in 79.5448 ms +2021-08-21 09:25:16.433 +08:00 [DBG] removed records count=0 +2021-08-21 09:25:16.433 +08:00 [DBG] Removing outdated records from table 'List'... +2021-08-21 09:25:16.433 +08:00 [DBG] Execution loop DelayedJobScheduler:babb2807 has started in 7.6839 ms +2021-08-21 09:25:16.434 +08:00 [INF] Server szqh003802a:21836:bf072b96 all the dispatchers started +2021-08-21 09:25:16.437 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-08-21 09:25:16.439 +08:00 [DBG] Execution loop RecurringJobScheduler:04381342 has started in 7.8568 ms +2021-08-21 09:25:16.466 +08:00 [DBG] removed records count=0 +2021-08-21 09:25:16.466 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-08-21 09:25:16.468 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-08-21 09:25:16.478 +08:00 [DBG] removed records count=0 +2021-08-21 09:25:16.478 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-08-21 09:25:16.483 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-08-21 09:25:16.490 +08:00 [DBG] removed records count=0 +2021-08-21 09:25:16.851 +08:00 [INF] Initialized all ABP modules. +2021-08-21 09:25:16.920 +08:00 [INF] Now listening on: http://localhost:44315 +2021-08-21 09:25:16.920 +08:00 [INF] Application started. Press Ctrl+C to shut down. +2021-08-21 09:25:16.920 +08:00 [INF] Hosting environment: Development +2021-08-21 09:25:16.920 +08:00 [INF] Content root path: D:\abp\aspnet-core\services\src\CompanyName.ProjectName.HttpApi.Host +2021-08-21 09:25:17.511 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/ - - +2021-08-21 09:25:19.005 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-08-21 09:25:19.078 +08:00 [INF] Route matched with {action = "Index", controller = "Home", area = "", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult Index() on controller CompanyName.ProjectName.Controllers.HomeController (CompanyName.ProjectName.HttpApi.Host). +2021-08-21 09:25:19.113 +08:00 [INF] Executing RedirectResult, redirecting to /swagger. +2021-08-21 09:25:19.121 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host) in 38.7482ms +2021-08-21 09:25:19.121 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-08-21 09:25:19.141 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/ - - - 302 0 - 1631.7288ms +2021-08-21 09:25:19.156 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/index.html - - +2021-08-21 09:25:19.217 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/index.html - - - 200 - text/html;charset=utf-8 60.7214ms +2021-08-21 09:25:19.405 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - +2021-08-21 09:25:19.787 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 381.9264ms +2021-08-21 09:25:30.123 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/create - - +2021-08-21 09:25:30.128 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:25:30.134 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/create - - - 204 - - 11.3866ms +2021-08-21 09:25:30.137 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/create application/json 34 +2021-08-21 09:25:30.139 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:25:30.190 +08:00 [INF] Successfully validated the token. +2021-08-21 09:25:30.197 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:25:30.211 +08:00 [INF] Route matched with {action = "Create", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task CreateAsync(CompanyName.ProjectName.IdentityServers.Clients.CreateClientInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 09:25:30.901 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.CreateAsync (CompanyName.ProjectName.HttpApi) in 690.4778ms +2021-08-21 09:25:30.902 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:25:31.019 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:25:31.019 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:25:31.176 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:25:31.176 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:25:31.179 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/create application/json 34 - 204 - - 1042.7188ms +2021-08-21 09:25:31.222 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 09:25:31.222 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:25:31.222 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4514ms +2021-08-21 09:25:31.224 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 09:25:31.224 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:25:31.227 +08:00 [INF] Successfully validated the token. +2021-08-21 09:25:31.228 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:25:31.231 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 09:25:31.779 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:25:31.806 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 574.6798ms +2021-08-21 09:25:31.806 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:25:31.815 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:25:31.840 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:25:31.840 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:25:31.841 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 617.0295ms +2021-08-21 09:25:37.375 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:25:37.378 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:25:37.378 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 3.2073ms +2021-08-21 09:25:37.380 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:25:37.380 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:25:37.383 +08:00 [INF] Successfully validated the token. +2021-08-21 09:25:37.408 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:25:37.408 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:25:37.408 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 28.5155ms +2021-08-21 09:25:37.519 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 09:25:37.519 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:25:37.519 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.5312ms +2021-08-21 09:25:37.522 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 09:25:37.523 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:25:37.526 +08:00 [INF] Successfully validated the token. +2021-08-21 09:25:37.528 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:25:37.529 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 09:25:37.591 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:25:37.594 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 65.0315ms +2021-08-21 09:25:37.594 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:25:37.601 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:25:37.630 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:25:37.630 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:25:37.631 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 108.6648ms +2021-08-21 09:25:46.395 +08:00 [DBG] Server szqh003802a:21836:bf072b96 heartbeat successfully sent +2021-08-21 09:25:49.487 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 09:25:57.141 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/create - - +2021-08-21 09:25:57.142 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:25:57.142 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/create - - - 204 - - 0.7166ms +2021-08-21 09:25:57.144 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/create application/json 37 +2021-08-21 09:25:57.144 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:25:57.147 +08:00 [INF] Successfully validated the token. +2021-08-21 09:25:57.149 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:25:57.149 +08:00 [INF] Route matched with {action = "Create", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task CreateAsync(CompanyName.ProjectName.IdentityServers.Clients.CreateClientInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 09:26:25.752 +08:00 [INF] Starting CompanyName.ProjectName.HttpApi.Host. +2021-08-21 09:26:31.205 +08:00 [INF] User profile is available. Using 'C:\Users\wangjun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. +2021-08-21 09:26:31.328 +08:00 [INF] Loaded ABP modules: +2021-08-21 09:26:31.328 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiHostModule +2021-08-21 09:26:31.328 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiModule +2021-08-21 09:26:31.328 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationContractsModule +2021-08-21 09:26:31.328 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainSharedModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainSharedModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Data.AbpDataModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainSharedModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule +2021-08-21 09:26:31.328 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationContractsModule +2021-08-21 09:26:31.328 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainSharedModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.UI.AbpUiModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule +2021-08-21 09:26:31.328 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementHttpApiModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Caching.StackExchangeRedis.AbpCachingStackExchangeRedisModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule +2021-08-21 09:26:31.328 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationModule +2021-08-21 09:26:31.328 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.PermissionManagement.IdentityServer.AbpPermissionManagementDomainIdentityServerModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule +2021-08-21 09:26:31.328 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule +2021-08-21 09:26:31.328 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainModule +2021-08-21 09:26:31.328 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainSharedModule +2021-08-21 09:26:31.328 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationModule +2021-08-21 09:26:31.328 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreDbMigrationsModule +2021-08-21 09:26:31.328 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.IdentityServer.EntityFrameworkCore.AbpIdentityServerEntityFrameworkCoreModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.MySQL.AbpEntityFrameworkCoreMySQLModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.BackgroundJobs.EntityFrameworkCore.AbpBackgroundJobsEntityFrameworkCoreModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule +2021-08-21 09:26:31.328 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.FreeSqlMySql.QueryManagementFreeSqlMySqlModule +2021-08-21 09:26:31.328 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.EntityFrameworkCore.DataDictionaryManagementEntityFrameworkCoreModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.BackgroundJobs.Hangfire.AbpBackgroundJobsHangfireModule +2021-08-21 09:26:31.328 +08:00 [INF] - Volo.Abp.Hangfire.AbpHangfireModule +2021-08-21 09:26:31.420 +08:00 [DBG] Started background worker: Volo.Abp.BackgroundJobs.BackgroundJobWorker +2021-08-21 09:26:31.423 +08:00 [DBG] Started background worker: Volo.Abp.IdentityServer.Tokens.TokenCleanupBackgroundWorker +2021-08-21 09:26:31.572 +08:00 [INF] DB tables already exist. Exit install +2021-08-21 09:26:31.585 +08:00 [INF] Starting Hangfire Server using job storage: 'Server: localhost@CompanyNameProjectNameHangfireDB' +2021-08-21 09:26:31.585 +08:00 [INF] Using the following options for SQL Server job storage: +2021-08-21 09:26:31.586 +08:00 [INF] Queue poll interval: 00:00:15. +2021-08-21 09:26:31.586 +08:00 [INF] Using the following options for Hangfire Server: + Worker count: 20 + Listening queues: 'default' + Shutdown timeout: 00:00:15 + Schedule polling interval: 00:00:15 +2021-08-21 09:26:31.615 +08:00 [DBG] Execution loop BackgroundServerProcess:045dbdb2 has started in 6.3253 ms +2021-08-21 09:26:31.744 +08:00 [INF] Server szqh003802a:7996:d516eb17 successfully announced in 120.0626 ms +2021-08-21 09:26:31.748 +08:00 [INF] Server szqh003802a:7996:d516eb17 is starting the registered dispatchers: ServerWatchdog, ServerJobCancellationWatcher, ExpirationManager, CountersAggregator, Worker, DelayedJobScheduler, RecurringJobScheduler... +2021-08-21 09:26:31.749 +08:00 [DBG] Execution loop ServerHeartbeatProcess:a12e1d8e has started in 3.5215 ms +2021-08-21 09:26:31.752 +08:00 [DBG] Execution loop ServerWatchdog:d0a6f372 has started in 3.7891 ms +2021-08-21 09:26:31.753 +08:00 [DBG] Execution loop ServerJobCancellationWatcher:ca1bf264 has started in 3.8414 ms +2021-08-21 09:26:31.756 +08:00 [DBG] Execution loop ExpirationManager:f08383ed has started in 5.4009 ms +2021-08-21 09:26:31.757 +08:00 [DBG] Execution loop CountersAggregator:14e64fb2 has started in 4.3677 ms +2021-08-21 09:26:31.759 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 09:26:31.759 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-08-21 09:26:31.761 +08:00 [DBG] Execution loop Worker:ed9d8ce9 has started in 5.1988 ms +2021-08-21 09:26:31.765 +08:00 [DBG] Execution loop Worker:15a69ed8 has started in 8.7053 ms +2021-08-21 09:26:31.802 +08:00 [DBG] Execution loop Worker:c9e0adb3 has started in 46.1793 ms +2021-08-21 09:26:31.802 +08:00 [DBG] Execution loop Worker:1f18fc4f has started in 46.2033 ms +2021-08-21 09:26:31.806 +08:00 [DBG] Execution loop Worker:3c18b57c has started in 50.5106 ms +2021-08-21 09:26:31.809 +08:00 [DBG] Execution loop Worker:af122187 has started in 52.1495 ms +2021-08-21 09:26:31.809 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-08-21 09:26:31.811 +08:00 [DBG] Execution loop Worker:745c5dc0 has started in 54.6328 ms +2021-08-21 09:26:31.812 +08:00 [DBG] Execution loop Worker:c69d58e2 has started in 56.2941 ms +2021-08-21 09:26:31.813 +08:00 [DBG] Execution loop Worker:c827da42 has started in 57.5725 ms +2021-08-21 09:26:31.816 +08:00 [DBG] Execution loop Worker:6aa1e07c has started in 59.6107 ms +2021-08-21 09:26:31.819 +08:00 [DBG] Execution loop Worker:cb264505 has started in 62.4303 ms +2021-08-21 09:26:31.821 +08:00 [DBG] Execution loop Worker:d0944aa4 has started in 64.9742 ms +2021-08-21 09:26:31.825 +08:00 [DBG] Execution loop Worker:18e3b73f has started in 69.1322 ms +2021-08-21 09:26:31.827 +08:00 [DBG] Execution loop Worker:3d4c9576 has started in 71.4214 ms +2021-08-21 09:26:31.830 +08:00 [DBG] Execution loop Worker:c2c2b0be has started in 74.3095 ms +2021-08-21 09:26:31.834 +08:00 [DBG] Execution loop Worker:14fb028f has started in 77.2382 ms +2021-08-21 09:26:31.840 +08:00 [DBG] Execution loop Worker:31434ace has started in 84.0442 ms +2021-08-21 09:26:31.856 +08:00 [DBG] Execution loop Worker:29a88c09 has started in 99.5697 ms +2021-08-21 09:26:31.862 +08:00 [DBG] Execution loop Worker:1aeeb144 has started in 106.417 ms +2021-08-21 09:26:31.872 +08:00 [DBG] Execution loop Worker:64ab7b4e has started in 115.9142 ms +2021-08-21 09:26:31.881 +08:00 [DBG] removed records count=0 +2021-08-21 09:26:31.881 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-08-21 09:26:31.892 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-08-21 09:26:31.897 +08:00 [DBG] Execution loop DelayedJobScheduler:872e0b9e has started in 33.1991 ms +2021-08-21 09:26:31.911 +08:00 [INF] Server szqh003802a:7996:d516eb17 all the dispatchers started +2021-08-21 09:26:31.911 +08:00 [DBG] Execution loop RecurringJobScheduler:29d7ff18 has started in 27.441 ms +2021-08-21 09:26:31.919 +08:00 [DBG] removed records count=0 +2021-08-21 09:26:31.919 +08:00 [DBG] Removing outdated records from table 'List'... +2021-08-21 09:26:31.933 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-08-21 09:26:31.949 +08:00 [DBG] removed records count=0 +2021-08-21 09:26:31.949 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-08-21 09:26:31.955 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-08-21 09:26:31.965 +08:00 [DBG] removed records count=0 +2021-08-21 09:26:31.965 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-08-21 09:26:31.970 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-08-21 09:26:31.981 +08:00 [DBG] removed records count=0 +2021-08-21 09:26:32.398 +08:00 [INF] Initialized all ABP modules. +2021-08-21 09:26:32.468 +08:00 [INF] Now listening on: http://localhost:44315 +2021-08-21 09:26:32.469 +08:00 [INF] Application started. Press Ctrl+C to shut down. +2021-08-21 09:26:32.469 +08:00 [INF] Hosting environment: Development +2021-08-21 09:26:32.469 +08:00 [INF] Content root path: D:\abp\aspnet-core\services\src\CompanyName.ProjectName.HttpApi.Host +2021-08-21 09:26:32.667 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/ - - +2021-08-21 09:26:33.308 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 09:26:33.337 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:26:33.429 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 114.1355ms +2021-08-21 09:26:33.444 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 09:26:33.446 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:26:33.978 +08:00 [INF] Successfully validated the token. +2021-08-21 09:26:34.215 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-08-21 09:26:34.215 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:26:34.280 +08:00 [INF] Route matched with {action = "Index", controller = "Home", area = "", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult Index() on controller CompanyName.ProjectName.Controllers.HomeController (CompanyName.ProjectName.HttpApi.Host). +2021-08-21 09:26:34.283 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 09:26:34.355 +08:00 [INF] Executing RedirectResult, redirecting to /swagger. +2021-08-21 09:26:34.360 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host) in 75.7028ms +2021-08-21 09:26:34.361 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-08-21 09:26:34.365 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/ - - - 302 0 - 1702.4419ms +2021-08-21 09:26:34.370 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/index.html - - +2021-08-21 09:26:34.440 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/index.html - - - 200 - text/html;charset=utf-8 70.3867ms +2021-08-21 09:26:34.642 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - +2021-08-21 09:26:35.032 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 389.9835ms +2021-08-21 09:26:36.264 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:26:36.294 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 2010.9645ms +2021-08-21 09:26:36.295 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:26:36.366 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:26:36.683 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:26:36.683 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:26:36.686 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 3242.9810ms +2021-08-21 09:26:45.471 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/create - - +2021-08-21 09:26:45.471 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:26:45.471 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/create - - - 204 - - 0.4893ms +2021-08-21 09:26:45.473 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/create application/json 35 +2021-08-21 09:26:45.473 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:26:45.476 +08:00 [INF] Successfully validated the token. +2021-08-21 09:26:45.478 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:26:45.480 +08:00 [INF] Route matched with {action = "Create", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task CreateAsync(CompanyName.ProjectName.IdentityServers.Clients.CreateClientInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 09:26:49.805 +08:00 [WRN] ---------- RemoteServiceErrorInfo ---------- +{ + "code": null, + "message": "\u5F53\u524DClientId\u5DF2\u5B58\u5728", + "details": null, + "data": {}, + "validationErrors": null +} + +2021-08-21 09:26:49.806 +08:00 [WRN] 当前ClientId已存在 +Volo.Abp.UserFriendlyException: 当前ClientId已存在 + at CompanyName.ProjectName.IdentityServer.IdenityServerClientManager.CreateAsync(String clientId, String clientName, String description) in D:\abp\aspnet-core\services\src\CompanyName.ProjectName.Domain\IdentityServer\IdenityServerClientManager.cs:line 48 + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.GlobalFeatures.GlobalFeatureInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.Auditing.AuditingInterceptor.ProceedByLoggingAsync(IAbpMethodInvocation invocation, IAuditingHelper auditingHelper, IAuditLogScope auditLogScope) + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.Validation.ValidationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at lambda_method2651(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) +2021-08-21 09:26:49.806 +08:00 [WRN] Code: +2021-08-21 09:26:49.806 +08:00 [WRN] Details: +2021-08-21 09:26:49.809 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2021-08-21 09:26:49.816 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 09:26:49.824 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.CreateAsync (CompanyName.ProjectName.HttpApi) in 4344.3647ms +2021-08-21 09:26:49.825 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:26:49.964 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:26:49.964 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:26:49.965 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/create application/json 35 - 500 - application/json;+charset=utf-8 4492.2284ms +2021-08-21 09:27:01.788 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:27:09.841 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:27:09.842 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:27:09.842 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.6417ms +2021-08-21 09:27:09.844 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:27:09.844 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:27:09.847 +08:00 [INF] Successfully validated the token. +2021-08-21 09:27:10.008 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:27:10.013 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:27:10.019 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:27:10.023 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:27:10.027 +08:00 [INF] Authorization was successful. +2021-08-21 09:27:10.030 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:27:10.032 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:27:10.762 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:27:10.788 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 755.9165ms +2021-08-21 09:27:10.788 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:27:10.802 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:27:10.828 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:27:10.828 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:27:10.830 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 986.7742ms +2021-08-21 09:27:12.151 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Roles/all - - +2021-08-21 09:27:12.152 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:27:12.152 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Roles/all - - - 204 - - 0.6309ms +2021-08-21 09:27:12.155 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Roles/all - 0 +2021-08-21 09:27:12.156 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:27:12.158 +08:00 [INF] Successfully validated the token. +2021-08-21 09:27:12.159 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles +2021-08-21 09:27:12.163 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles +2021-08-21 09:27:12.163 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles +2021-08-21 09:27:12.166 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles +2021-08-21 09:27:12.166 +08:00 [INF] Authorization was successful. +2021-08-21 09:27:12.168 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.RoleController.AllListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:27:12.170 +08:00 [INF] Route matched with {action = "AllList", controller = "Role", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.ListResultDto`1[Volo.Abp.Identity.IdentityRoleDto]] AllListAsync() on controller CompanyName.ProjectName.Controllers.Systems.RoleController (CompanyName.ProjectName.HttpApi). +2021-08-21 09:27:12.299 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.ListResultDto`1[[Volo.Abp.Identity.IdentityRoleDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:27:12.301 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.RoleController.AllListAsync (CompanyName.ProjectName.HttpApi) in 131.3819ms +2021-08-21 09:27:12.301 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.RoleController.AllListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:27:12.309 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:27:12.335 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:27:12.335 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:27:12.336 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Roles/all - 0 - 200 - application/json;+charset=utf-8 180.3708ms +2021-08-21 09:27:31.807 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:27:51.286 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 09:27:53.198 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:27:53.201 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:27:53.202 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 3.4856ms +2021-08-21 09:27:53.205 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:27:53.206 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:27:53.209 +08:00 [INF] Successfully validated the token. +2021-08-21 09:27:53.242 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:27:53.242 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:27:53.243 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 37.4961ms +2021-08-21 09:27:53.357 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:27:53.357 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:27:53.357 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.7271ms +2021-08-21 09:27:53.363 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:27:53.363 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:27:53.368 +08:00 [INF] Successfully validated the token. +2021-08-21 09:27:53.370 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:27:53.375 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:27:53.375 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:27:53.379 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:27:53.379 +08:00 [INF] Authorization was successful. +2021-08-21 09:27:53.381 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:27:53.382 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:27:53.442 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:27:53.450 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 68.3067ms +2021-08-21 09:27:53.450 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:27:53.458 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:27:53.506 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:27:53.506 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:27:53.507 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 144.2334ms +2021-08-21 09:28:01.086 +08:00 [DBG] 464 recurring job(s) processed by scheduler. +2021-08-21 09:28:01.552 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:28:01.553 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:28:01.553 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.7099ms +2021-08-21 09:28:01.556 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:28:01.556 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:28:01.559 +08:00 [INF] Successfully validated the token. +2021-08-21 09:28:01.601 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:28:01.602 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:28:01.602 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 46.2405ms +2021-08-21 09:28:01.830 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:28:02.280 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:28:02.280 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:28:02.280 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.6467ms +2021-08-21 09:28:02.282 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:28:02.283 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:28:02.285 +08:00 [INF] Successfully validated the token. +2021-08-21 09:28:02.286 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:28:02.289 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:28:02.289 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:28:02.292 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:28:02.292 +08:00 [INF] Authorization was successful. +2021-08-21 09:28:02.293 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:28:02.294 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:28:02.330 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:28:02.334 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 40.7832ms +2021-08-21 09:28:02.334 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:28:02.338 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:28:02.367 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:28:02.367 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:28:02.367 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 85.0223ms +2021-08-21 09:28:25.165 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:28:25.166 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:28:25.166 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6314ms +2021-08-21 09:28:25.168 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:28:25.168 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:28:25.171 +08:00 [INF] Successfully validated the token. +2021-08-21 09:28:25.205 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:28:25.205 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:28:25.206 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 37.4933ms +2021-08-21 09:28:25.281 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:28:25.281 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:28:25.282 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.5754ms +2021-08-21 09:28:25.283 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:28:25.284 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:28:25.286 +08:00 [INF] Successfully validated the token. +2021-08-21 09:28:25.286 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:28:25.290 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:28:25.290 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:28:25.292 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:28:25.293 +08:00 [INF] Authorization was successful. +2021-08-21 09:28:25.294 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:28:25.294 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:28:25.326 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:28:25.330 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 36.0209ms +2021-08-21 09:28:25.330 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:28:25.333 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:28:25.359 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:28:25.359 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:28:25.359 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 75.6197ms +2021-08-21 09:28:31.869 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:28:32.677 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:28:32.677 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:28:32.677 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5106ms +2021-08-21 09:28:32.679 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:28:32.679 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:28:32.682 +08:00 [INF] Successfully validated the token. +2021-08-21 09:28:32.703 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:28:32.704 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:28:32.704 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 24.7287ms +2021-08-21 09:28:33.284 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:28:33.285 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:28:33.285 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.5206ms +2021-08-21 09:28:33.287 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:28:33.287 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:28:33.289 +08:00 [INF] Successfully validated the token. +2021-08-21 09:28:33.290 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:28:33.294 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:28:33.294 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:28:33.296 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:28:33.296 +08:00 [INF] Authorization was successful. +2021-08-21 09:28:33.297 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:28:33.298 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:28:33.329 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:28:33.333 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 34.8349ms +2021-08-21 09:28:33.333 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:28:33.336 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:28:33.361 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:28:33.361 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:28:33.362 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 74.9790ms +2021-08-21 09:28:47.628 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:28:47.628 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:28:47.628 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5115ms +2021-08-21 09:28:47.630 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:28:47.631 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:28:47.633 +08:00 [INF] Successfully validated the token. +2021-08-21 09:28:47.658 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:28:47.658 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:28:47.658 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 28.2316ms +2021-08-21 09:28:48.276 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:28:48.277 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:28:48.277 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 1.1776ms +2021-08-21 09:28:48.280 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:28:48.280 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:28:48.282 +08:00 [INF] Successfully validated the token. +2021-08-21 09:28:48.283 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:28:48.288 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:28:48.288 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:28:48.291 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:28:48.291 +08:00 [INF] Authorization was successful. +2021-08-21 09:28:48.292 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:28:48.292 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:28:48.324 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:28:48.327 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 35.0641ms +2021-08-21 09:28:48.327 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:28:48.330 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:28:48.356 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:28:48.356 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:28:48.356 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 76.6326ms +2021-08-21 09:29:01.887 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:29:19.574 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:29:19.574 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:29:19.574 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4944ms +2021-08-21 09:29:19.576 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:29:19.577 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:29:19.580 +08:00 [INF] Successfully validated the token. +2021-08-21 09:29:19.604 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:29:19.604 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:29:19.604 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 27.7701ms +2021-08-21 09:29:20.293 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:29:20.293 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:29:20.293 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4545ms +2021-08-21 09:29:20.295 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:29:20.295 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:29:20.298 +08:00 [INF] Successfully validated the token. +2021-08-21 09:29:20.299 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:29:20.303 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:29:20.303 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:29:20.306 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:29:20.306 +08:00 [INF] Authorization was successful. +2021-08-21 09:29:20.308 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:29:20.308 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:29:20.349 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:29:20.353 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 44.7943ms +2021-08-21 09:29:20.353 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:29:20.356 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:29:20.402 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:29:20.402 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:29:20.403 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 107.4534ms +2021-08-21 09:29:25.150 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:29:25.150 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:29:25.150 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5414ms +2021-08-21 09:29:25.152 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:29:25.153 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:29:25.155 +08:00 [INF] Successfully validated the token. +2021-08-21 09:29:25.180 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:29:25.180 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:29:25.180 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 27.9749ms +2021-08-21 09:29:25.276 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:29:25.277 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:29:25.279 +08:00 [INF] Successfully validated the token. +2021-08-21 09:29:25.280 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:29:25.283 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:29:25.283 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:29:25.286 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:29:25.286 +08:00 [INF] Authorization was successful. +2021-08-21 09:29:25.287 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:29:25.287 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:29:25.321 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:29:25.325 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 37.8197ms +2021-08-21 09:29:25.325 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:29:25.328 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:29:25.356 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:29:25.356 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:29:25.357 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 80.1868ms +2021-08-21 09:29:29.518 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:29:29.518 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:29:29.518 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6422ms +2021-08-21 09:29:29.522 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:29:29.522 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:29:29.524 +08:00 [INF] Successfully validated the token. +2021-08-21 09:29:29.559 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:29:29.559 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:29:29.559 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 37.7384ms +2021-08-21 09:29:30.274 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:29:30.274 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:29:30.274 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.5104ms +2021-08-21 09:29:30.277 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:29:30.277 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:29:30.280 +08:00 [INF] Successfully validated the token. +2021-08-21 09:29:30.281 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:29:30.286 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:29:30.286 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:29:30.290 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:29:30.290 +08:00 [INF] Authorization was successful. +2021-08-21 09:29:30.291 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:29:30.292 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:29:30.329 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:29:30.333 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 41.4208ms +2021-08-21 09:29:30.333 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:29:30.338 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:29:30.364 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:29:30.364 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:29:30.364 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 87.9171ms +2021-08-21 09:29:31.974 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:29:40.057 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:29:40.057 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:29:40.057 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4827ms +2021-08-21 09:29:40.059 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:29:40.060 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:29:40.062 +08:00 [INF] Successfully validated the token. +2021-08-21 09:29:40.085 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:29:40.085 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:29:40.086 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.4611ms +2021-08-21 09:29:40.277 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:29:40.278 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:29:40.278 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4401ms +2021-08-21 09:29:40.279 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:29:40.279 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:29:40.282 +08:00 [INF] Successfully validated the token. +2021-08-21 09:29:40.282 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:29:40.286 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:29:40.286 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:29:40.289 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:29:40.289 +08:00 [INF] Authorization was successful. +2021-08-21 09:29:40.290 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:29:40.290 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:29:40.326 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:29:40.330 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 39.6987ms +2021-08-21 09:29:40.330 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:29:40.333 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:29:40.362 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:29:40.362 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:29:40.362 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 82.9080ms +2021-08-21 09:29:52.439 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:29:52.440 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:29:52.440 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4667ms +2021-08-21 09:29:52.442 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:29:52.442 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:29:52.445 +08:00 [INF] Successfully validated the token. +2021-08-21 09:29:52.467 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:29:52.467 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:29:52.467 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 25.0154ms +2021-08-21 09:29:52.557 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:29:52.558 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:29:52.558 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.5101ms +2021-08-21 09:29:52.560 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:29:52.561 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:29:52.564 +08:00 [INF] Successfully validated the token. +2021-08-21 09:29:52.564 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:29:52.568 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:29:52.568 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:29:52.571 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:29:52.571 +08:00 [INF] Authorization was successful. +2021-08-21 09:29:52.572 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:29:52.572 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:29:52.608 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:29:52.612 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 39.2144ms +2021-08-21 09:29:52.612 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:29:52.615 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:29:52.643 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:29:52.643 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:29:52.643 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 83.0097ms +2021-08-21 09:29:57.446 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:29:57.447 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:29:57.447 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5304ms +2021-08-21 09:29:57.449 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:29:57.449 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:29:57.453 +08:00 [INF] Successfully validated the token. +2021-08-21 09:29:57.480 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:29:57.480 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:29:57.481 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 31.6724ms +2021-08-21 09:29:57.603 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:29:57.604 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:29:57.604 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.7659ms +2021-08-21 09:29:57.606 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:29:57.607 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:29:57.610 +08:00 [INF] Successfully validated the token. +2021-08-21 09:29:57.611 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:29:57.615 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:29:57.615 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:29:57.618 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:29:57.618 +08:00 [INF] Authorization was successful. +2021-08-21 09:29:57.620 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:29:57.620 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:29:57.660 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:29:57.665 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 44.7999ms +2021-08-21 09:29:57.665 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:29:57.670 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:29:57.705 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:29:57.705 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:29:57.706 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 99.2759ms +2021-08-21 09:30:01.081 +08:00 [DBG] 699 recurring job(s) processed by scheduler. +2021-08-21 09:30:02.086 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:30:05.368 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:30:05.368 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:30:05.368 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5750ms +2021-08-21 09:30:05.371 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:30:05.371 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:30:05.374 +08:00 [INF] Successfully validated the token. +2021-08-21 09:30:05.397 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:30:05.397 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:30:05.398 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 27.1806ms +2021-08-21 09:30:05.489 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:30:05.489 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:30:05.490 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4734ms +2021-08-21 09:30:05.492 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:30:05.492 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:30:05.495 +08:00 [INF] Successfully validated the token. +2021-08-21 09:30:05.495 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:30:05.499 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:30:05.499 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:30:05.501 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:30:05.502 +08:00 [INF] Authorization was successful. +2021-08-21 09:30:05.503 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:30:05.503 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:30:05.538 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:30:05.542 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 38.9553ms +2021-08-21 09:30:05.542 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:30:05.545 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:30:05.575 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:30:05.575 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:30:05.576 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 83.5819ms +2021-08-21 09:30:08.302 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:30:08.303 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:30:08.303 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4803ms +2021-08-21 09:30:08.305 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:30:08.306 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:30:08.308 +08:00 [INF] Successfully validated the token. +2021-08-21 09:30:08.332 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:30:08.332 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:30:08.333 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 27.5124ms +2021-08-21 09:30:08.444 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:30:08.444 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:30:08.447 +08:00 [INF] Successfully validated the token. +2021-08-21 09:30:08.448 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:30:08.452 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:30:08.452 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:30:08.456 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:30:08.456 +08:00 [INF] Authorization was successful. +2021-08-21 09:30:08.458 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:30:08.458 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:30:08.492 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:30:08.496 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 38.3687ms +2021-08-21 09:30:08.496 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:30:08.501 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:30:08.529 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:30:08.529 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:30:08.530 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 85.7356ms +2021-08-21 09:30:10.944 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:30:10.944 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:30:10.945 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.7044ms +2021-08-21 09:30:10.947 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:30:10.948 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:30:10.950 +08:00 [INF] Successfully validated the token. +2021-08-21 09:30:10.977 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:30:10.977 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:30:10.978 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 30.6105ms +2021-08-21 09:30:11.595 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:30:11.596 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:30:11.596 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.5198ms +2021-08-21 09:30:11.598 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:30:11.598 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:30:11.601 +08:00 [INF] Successfully validated the token. +2021-08-21 09:30:11.602 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:30:11.606 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:30:11.606 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:30:11.610 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:30:11.610 +08:00 [INF] Authorization was successful. +2021-08-21 09:30:11.611 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:30:11.611 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:30:11.646 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:30:11.652 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 40.1802ms +2021-08-21 09:30:11.652 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:30:11.657 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:30:11.698 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:30:11.698 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:30:11.698 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 100.1038ms +2021-08-21 09:30:29.273 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:30:29.273 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:30:29.273 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4752ms +2021-08-21 09:30:29.275 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:30:29.276 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:30:29.279 +08:00 [INF] Successfully validated the token. +2021-08-21 09:30:29.316 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:30:29.316 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:30:29.317 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 41.2950ms +2021-08-21 09:30:29.397 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:30:29.398 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:30:29.398 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.7320ms +2021-08-21 09:30:29.402 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:30:29.403 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:30:29.406 +08:00 [INF] Successfully validated the token. +2021-08-21 09:30:29.407 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:30:29.411 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:30:29.411 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:30:29.415 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:30:29.415 +08:00 [INF] Authorization was successful. +2021-08-21 09:30:29.417 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:30:29.417 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:30:29.455 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:30:29.459 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 42.09ms +2021-08-21 09:30:29.460 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:30:29.464 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:30:29.502 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:30:29.502 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:30:29.503 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 100.4833ms +2021-08-21 09:30:32.104 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:30:44.243 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:30:44.243 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:30:44.243 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5108ms +2021-08-21 09:30:44.245 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:30:44.245 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:30:44.248 +08:00 [INF] Successfully validated the token. +2021-08-21 09:30:44.282 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:30:44.282 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:30:44.282 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 36.6700ms +2021-08-21 09:30:44.888 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:30:44.888 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:30:44.888 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.5912ms +2021-08-21 09:30:44.891 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:30:44.891 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:30:44.894 +08:00 [INF] Successfully validated the token. +2021-08-21 09:30:44.894 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:30:44.898 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:30:44.898 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:30:44.900 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:30:44.900 +08:00 [INF] Authorization was successful. +2021-08-21 09:30:44.901 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:30:44.902 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:30:44.931 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:30:44.935 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 33.5455ms +2021-08-21 09:30:44.935 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:30:44.938 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:30:44.964 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:30:44.964 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:30:44.964 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 73.4142ms +2021-08-21 09:30:48.409 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:30:48.410 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:30:48.410 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 1.0863ms +2021-08-21 09:30:48.413 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:30:48.414 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:30:48.417 +08:00 [INF] Successfully validated the token. +2021-08-21 09:30:48.443 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:30:48.443 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:30:48.444 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 30.1470ms +2021-08-21 09:30:48.522 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:30:48.523 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:30:48.525 +08:00 [INF] Successfully validated the token. +2021-08-21 09:30:48.526 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:30:48.529 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:30:48.530 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:30:48.532 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:30:48.533 +08:00 [INF] Authorization was successful. +2021-08-21 09:30:48.534 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:30:48.534 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:30:48.568 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:30:48.571 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 37.1942ms +2021-08-21 09:30:48.571 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:30:48.576 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:30:48.603 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:30:48.603 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:30:48.604 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 81.0286ms +2021-08-21 09:31:02.134 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:31:12.718 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:31:12.719 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:31:12.719 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4676ms +2021-08-21 09:31:12.721 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:31:12.721 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:31:12.724 +08:00 [INF] Successfully validated the token. +2021-08-21 09:31:12.748 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:31:12.748 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:31:12.748 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 27.1880ms +2021-08-21 09:31:13.268 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:31:13.268 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:31:13.268 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4682ms +2021-08-21 09:31:13.270 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:31:13.270 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:31:13.273 +08:00 [INF] Successfully validated the token. +2021-08-21 09:31:13.273 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:31:13.277 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:31:13.277 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:31:13.280 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:31:13.280 +08:00 [INF] Authorization was successful. +2021-08-21 09:31:13.281 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:31:13.281 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:31:13.312 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:31:13.317 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 35.3238ms +2021-08-21 09:31:13.317 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:31:13.320 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:31:13.350 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:31:13.350 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:31:13.350 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 80.5653ms +2021-08-21 09:31:31.806 +08:00 [INF] 2 servers were removed due to timeout +2021-08-21 09:31:31.830 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 09:31:32.149 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:31:33.275 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:31:33.275 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:31:33.275 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.7217ms +2021-08-21 09:31:33.278 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:31:33.278 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:31:33.281 +08:00 [INF] Successfully validated the token. +2021-08-21 09:31:33.316 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:31:33.316 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:31:33.317 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 38.4725ms +2021-08-21 09:31:33.388 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:31:33.389 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:31:33.389 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.5839ms +2021-08-21 09:31:33.393 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:31:33.394 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:31:33.397 +08:00 [INF] Successfully validated the token. +2021-08-21 09:31:33.398 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:31:33.406 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:31:33.406 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:31:33.413 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:31:33.413 +08:00 [INF] Authorization was successful. +2021-08-21 09:31:33.415 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:31:33.415 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:31:33.452 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:31:33.456 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 40.4573ms +2021-08-21 09:31:33.456 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:31:33.459 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:31:33.487 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:31:33.487 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:31:33.487 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 93.9404ms +2021-08-21 09:31:38.598 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:31:38.598 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:31:38.598 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5860ms +2021-08-21 09:31:38.601 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:31:38.601 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:31:38.604 +08:00 [INF] Successfully validated the token. +2021-08-21 09:31:38.628 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:31:38.628 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:31:38.628 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 27.7940ms +2021-08-21 09:31:39.364 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:31:39.364 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:31:39.364 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4773ms +2021-08-21 09:31:39.366 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:31:39.366 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:31:39.369 +08:00 [INF] Successfully validated the token. +2021-08-21 09:31:39.370 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:31:39.373 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:31:39.373 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:31:39.376 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:31:39.376 +08:00 [INF] Authorization was successful. +2021-08-21 09:31:39.377 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:31:39.377 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:31:39.410 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:31:39.414 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 35.9796ms +2021-08-21 09:31:39.414 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:31:39.417 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:31:39.442 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:31:39.442 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:31:39.442 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 76.3020ms +2021-08-21 09:31:51.767 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:31:51.769 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:31:51.769 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 2.6185ms +2021-08-21 09:31:51.771 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:31:51.772 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:31:51.774 +08:00 [INF] Successfully validated the token. +2021-08-21 09:31:51.796 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:31:51.796 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:31:51.796 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 24.7548ms +2021-08-21 09:31:52.392 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:31:52.392 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:31:52.393 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.6259ms +2021-08-21 09:31:52.395 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:31:52.395 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:31:52.398 +08:00 [INF] Successfully validated the token. +2021-08-21 09:31:52.399 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:31:52.403 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:31:52.403 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:31:52.406 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:31:52.406 +08:00 [INF] Authorization was successful. +2021-08-21 09:31:52.408 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:31:52.408 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:31:52.444 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:31:52.450 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 41.2196ms +2021-08-21 09:31:52.450 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:31:52.454 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:31:52.481 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:31:52.481 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:31:52.482 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 86.5454ms +2021-08-21 09:32:00.630 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:32:00.630 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:32:00.630 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6054ms +2021-08-21 09:32:00.633 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:32:00.633 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:32:00.636 +08:00 [INF] Successfully validated the token. +2021-08-21 09:32:00.659 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:32:00.659 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:32:00.660 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 27.0307ms +2021-08-21 09:32:01.058 +08:00 [DBG] 623 recurring job(s) processed by scheduler. +2021-08-21 09:32:01.282 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:32:01.282 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:32:01.282 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.5587ms +2021-08-21 09:32:01.284 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:32:01.285 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:32:01.288 +08:00 [INF] Successfully validated the token. +2021-08-21 09:32:01.288 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:32:01.292 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:32:01.292 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:32:01.295 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:32:01.295 +08:00 [INF] Authorization was successful. +2021-08-21 09:32:01.296 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:32:01.296 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:32:01.329 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:32:01.332 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 36.4917ms +2021-08-21 09:32:01.333 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:32:01.336 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:32:01.373 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:32:01.373 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:32:01.373 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 89.0205ms +2021-08-21 09:32:02.209 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:32:13.705 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:32:13.705 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:32:13.705 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4861ms +2021-08-21 09:32:13.708 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:32:13.708 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:32:13.710 +08:00 [INF] Successfully validated the token. +2021-08-21 09:32:13.745 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:32:13.745 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:32:13.745 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 37.3926ms +2021-08-21 09:32:14.448 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:32:14.448 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:32:14.449 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4929ms +2021-08-21 09:32:14.451 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:32:14.451 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:32:14.454 +08:00 [INF] Successfully validated the token. +2021-08-21 09:32:14.455 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:32:14.459 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:32:14.459 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:32:14.461 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:32:14.461 +08:00 [INF] Authorization was successful. +2021-08-21 09:32:14.462 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:32:14.463 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:32:14.496 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:32:14.499 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 36.8132ms +2021-08-21 09:32:14.500 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:32:14.504 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:32:14.541 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:32:14.541 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:32:14.541 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 90.8062ms +2021-08-21 09:32:23.674 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:32:23.674 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:32:23.674 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.7824ms +2021-08-21 09:32:23.677 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:32:23.677 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:32:23.680 +08:00 [INF] Successfully validated the token. +2021-08-21 09:32:23.713 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:32:23.713 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:32:23.713 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 36.3018ms +2021-08-21 09:32:26.155 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:32:26.156 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:32:26.156 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5059ms +2021-08-21 09:32:26.158 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:32:26.158 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:32:26.161 +08:00 [INF] Successfully validated the token. +2021-08-21 09:32:26.184 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:32:26.184 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:32:26.185 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.5519ms +2021-08-21 09:32:26.278 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:32:26.279 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:32:26.279 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.5712ms +2021-08-21 09:32:26.281 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:32:26.281 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:32:26.283 +08:00 [INF] Successfully validated the token. +2021-08-21 09:32:26.284 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:32:26.288 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:32:26.288 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:32:26.292 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:32:26.293 +08:00 [INF] Authorization was successful. +2021-08-21 09:32:26.294 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:32:26.294 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:32:26.331 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:32:26.336 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 41.3301ms +2021-08-21 09:32:26.336 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:32:26.341 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:32:26.371 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:32:26.371 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:32:26.371 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 90.4518ms +2021-08-21 09:32:29.440 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:32:29.440 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:32:29.440 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5692ms +2021-08-21 09:32:29.444 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:32:29.445 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:32:29.447 +08:00 [INF] Successfully validated the token. +2021-08-21 09:32:29.482 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:32:29.482 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:32:29.482 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 38.0377ms +2021-08-21 09:32:30.414 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:32:30.415 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:32:30.418 +08:00 [INF] Successfully validated the token. +2021-08-21 09:32:30.419 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:32:30.423 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:32:30.423 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:32:30.426 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:32:30.427 +08:00 [INF] Authorization was successful. +2021-08-21 09:32:30.428 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:32:30.428 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:32:30.463 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:32:30.467 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 39.3941ms +2021-08-21 09:32:30.468 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:32:30.471 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:32:30.499 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:32:30.499 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:32:30.499 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 85.0795ms +2021-08-21 09:32:32.275 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:32:32.892 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:32:32.893 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:32:32.893 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.7255ms +2021-08-21 09:32:32.895 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:32:32.896 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:32:32.898 +08:00 [INF] Successfully validated the token. +2021-08-21 09:32:32.922 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:32:32.922 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:32:32.922 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.9971ms +2021-08-21 09:32:35.581 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:32:35.581 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:32:35.582 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5593ms +2021-08-21 09:32:35.584 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:32:35.584 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:32:35.586 +08:00 [INF] Successfully validated the token. +2021-08-21 09:32:35.611 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:32:35.611 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:32:35.611 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 27.3643ms +2021-08-21 09:32:36.274 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:32:36.274 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:32:36.274 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.5598ms +2021-08-21 09:32:36.279 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:32:36.280 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:32:36.282 +08:00 [INF] Successfully validated the token. +2021-08-21 09:32:36.283 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:32:36.287 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:32:36.287 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:32:36.290 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:32:36.290 +08:00 [INF] Authorization was successful. +2021-08-21 09:32:36.291 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:32:36.292 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:32:36.328 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:32:36.333 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 41.4876ms +2021-08-21 09:32:36.333 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:32:36.337 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:32:36.366 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:32:36.366 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:32:36.367 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 87.4100ms +2021-08-21 09:32:52.993 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:32:52.993 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:32:52.994 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4628ms +2021-08-21 09:32:52.995 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:32:52.996 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:32:52.998 +08:00 [INF] Successfully validated the token. +2021-08-21 09:32:53.033 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:32:53.033 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:32:53.033 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 37.5974ms +2021-08-21 09:32:53.483 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:32:53.484 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:32:53.484 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.5110ms +2021-08-21 09:32:53.486 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:32:53.486 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:32:53.488 +08:00 [INF] Successfully validated the token. +2021-08-21 09:32:53.489 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:32:53.493 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:32:53.493 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:32:53.496 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:32:53.496 +08:00 [INF] Authorization was successful. +2021-08-21 09:32:53.497 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:32:53.497 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:32:53.529 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:32:53.533 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 35.7849ms +2021-08-21 09:32:53.533 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:32:53.537 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:32:53.566 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:32:53.566 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:32:53.566 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 80.5242ms +2021-08-21 09:33:02.320 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:33:04.951 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:33:04.951 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:33:04.951 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.7216ms +2021-08-21 09:33:04.954 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:33:04.955 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:33:04.959 +08:00 [INF] Successfully validated the token. +2021-08-21 09:33:04.988 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:33:04.988 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:33:04.989 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 34.1507ms +2021-08-21 09:33:05.274 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:33:05.274 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:33:05.274 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.6049ms +2021-08-21 09:33:05.278 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:33:05.279 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:33:05.282 +08:00 [INF] Successfully validated the token. +2021-08-21 09:33:05.283 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:33:05.287 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:33:05.287 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:33:05.290 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:33:05.290 +08:00 [INF] Authorization was successful. +2021-08-21 09:33:05.291 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:33:05.291 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:33:05.323 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:33:05.327 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 36.0542ms +2021-08-21 09:33:05.327 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:33:05.331 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:33:05.358 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:33:05.358 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:33:05.358 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 79.9697ms +2021-08-21 09:33:32.345 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:34:01.472 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 09:34:02.367 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:34:32.374 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:35:02.390 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:35:32.426 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:35:53.067 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:35:53.068 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:35:53.068 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6732ms +2021-08-21 09:35:53.071 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:35:53.071 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:35:53.074 +08:00 [INF] Successfully validated the token. +2021-08-21 09:35:53.102 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:35:53.102 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:35:53.102 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 31.5255ms +2021-08-21 09:35:55.699 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:35:55.699 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:35:55.699 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5276ms +2021-08-21 09:35:55.703 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:35:55.703 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:35:55.705 +08:00 [INF] Successfully validated the token. +2021-08-21 09:35:55.727 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:35:55.727 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:35:55.728 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 25.0508ms +2021-08-21 09:35:57.625 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:35:57.625 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:35:57.625 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5121ms +2021-08-21 09:35:57.627 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:35:57.628 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:35:57.630 +08:00 [INF] Successfully validated the token. +2021-08-21 09:35:57.654 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:35:57.654 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:35:57.654 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.8164ms +2021-08-21 09:35:58.833 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:35:58.833 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:35:58.833 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.5740ms +2021-08-21 09:35:58.835 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:35:58.835 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:35:58.838 +08:00 [INF] Successfully validated the token. +2021-08-21 09:35:58.839 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:35:58.844 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:35:58.844 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:35:58.846 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:35:58.846 +08:00 [INF] Authorization was successful. +2021-08-21 09:35:58.848 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:35:58.848 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:35:58.878 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:35:58.882 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 34.1966ms +2021-08-21 09:35:58.882 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:35:58.886 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:35:58.914 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:35:58.914 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:35:58.915 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 79.7034ms +2021-08-21 09:36:02.486 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:36:02.922 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:36:02.922 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:36:02.922 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6013ms +2021-08-21 09:36:02.925 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:36:02.925 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:36:02.928 +08:00 [INF] Successfully validated the token. +2021-08-21 09:36:02.950 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:36:02.950 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:36:02.950 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 25.4109ms +2021-08-21 09:36:04.457 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:36:04.458 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:36:04.458 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.8091ms +2021-08-21 09:36:04.461 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:36:04.461 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:36:04.464 +08:00 [INF] Successfully validated the token. +2021-08-21 09:36:04.464 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:36:04.468 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:36:04.469 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:36:04.472 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:36:04.473 +08:00 [INF] Authorization was successful. +2021-08-21 09:36:04.474 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:36:04.474 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:36:04.508 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:36:04.513 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 38.9098ms +2021-08-21 09:36:04.513 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:36:04.517 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:36:04.544 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:36:04.544 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:36:04.544 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 83.2230ms +2021-08-21 09:36:11.711 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:36:11.712 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:36:11.712 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.7487ms +2021-08-21 09:36:11.714 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:36:11.715 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:36:11.718 +08:00 [INF] Successfully validated the token. +2021-08-21 09:36:11.740 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:36:11.740 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:36:11.741 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.2705ms +2021-08-21 09:36:12.266 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:36:12.266 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:36:12.267 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.5217ms +2021-08-21 09:36:12.268 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:36:12.269 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:36:12.271 +08:00 [INF] Successfully validated the token. +2021-08-21 09:36:12.272 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:36:12.275 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:36:12.275 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:36:12.278 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:36:12.278 +08:00 [INF] Authorization was successful. +2021-08-21 09:36:12.279 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:36:12.279 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:36:12.320 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:36:12.323 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 44.2733ms +2021-08-21 09:36:12.324 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:36:12.327 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:36:12.352 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:36:12.352 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:36:12.353 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 84.1854ms +2021-08-21 09:36:17.955 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:36:17.955 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:36:17.956 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5295ms +2021-08-21 09:36:17.958 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:36:17.958 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:36:17.961 +08:00 [INF] Successfully validated the token. +2021-08-21 09:36:17.985 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:36:17.985 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:36:17.985 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 27.1690ms +2021-08-21 09:36:18.292 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:36:18.292 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:36:18.293 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4900ms +2021-08-21 09:36:18.295 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:36:18.295 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:36:18.297 +08:00 [INF] Successfully validated the token. +2021-08-21 09:36:18.298 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:36:18.303 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:36:18.303 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:36:18.306 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:36:18.306 +08:00 [INF] Authorization was successful. +2021-08-21 09:36:18.307 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:36:18.307 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:36:18.344 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:36:18.349 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 41.2435ms +2021-08-21 09:36:18.349 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:36:18.355 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:36:18.389 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:36:18.389 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:36:18.390 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 94.8471ms +2021-08-21 09:36:23.202 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 09:36:31.917 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 09:36:32.220 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:36:32.220 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:36:32.221 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.7410ms +2021-08-21 09:36:32.223 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:36:32.224 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:36:32.227 +08:00 [INF] Successfully validated the token. +2021-08-21 09:36:32.252 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:36:32.252 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:36:32.253 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 29.3065ms +2021-08-21 09:36:32.362 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:36:32.362 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:36:32.363 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.6740ms +2021-08-21 09:36:32.365 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:36:32.366 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:36:32.369 +08:00 [INF] Successfully validated the token. +2021-08-21 09:36:32.370 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:36:32.374 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:36:32.374 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:36:32.378 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:36:32.378 +08:00 [INF] Authorization was successful. +2021-08-21 09:36:32.379 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:36:32.379 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:36:32.412 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:36:32.416 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 36.8319ms +2021-08-21 09:36:32.416 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:36:32.420 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:36:32.446 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:36:32.447 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:36:32.447 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 81.7196ms +2021-08-21 09:36:32.592 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:36:37.925 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:36:37.925 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:36:37.925 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6034ms +2021-08-21 09:36:37.927 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:36:37.927 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:36:37.930 +08:00 [INF] Successfully validated the token. +2021-08-21 09:36:37.953 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:36:37.953 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:36:37.953 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.2670ms +2021-08-21 09:36:38.298 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:36:38.299 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:36:38.299 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.6924ms +2021-08-21 09:36:38.301 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:36:38.302 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:36:38.305 +08:00 [INF] Successfully validated the token. +2021-08-21 09:36:38.305 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:36:38.310 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:36:38.310 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:36:38.313 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:36:38.313 +08:00 [INF] Authorization was successful. +2021-08-21 09:36:38.314 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:36:38.315 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:36:38.353 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:36:38.358 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 43.6308ms +2021-08-21 09:36:38.358 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:36:38.363 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:36:38.394 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:36:38.394 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:36:38.395 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 93.4739ms +2021-08-21 09:36:42.959 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 09:36:53.242 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:36:53.242 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:36:53.242 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6997ms +2021-08-21 09:36:53.245 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:36:53.246 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:36:53.249 +08:00 [INF] Successfully validated the token. +2021-08-21 09:36:53.271 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:36:53.271 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:36:53.272 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.3476ms +2021-08-21 09:36:53.404 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:36:53.405 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:36:53.405 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.6896ms +2021-08-21 09:36:53.408 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:36:53.408 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:36:53.411 +08:00 [INF] Successfully validated the token. +2021-08-21 09:36:53.412 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:36:53.416 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:36:53.416 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:36:53.420 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:36:53.420 +08:00 [INF] Authorization was successful. +2021-08-21 09:36:53.422 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:36:53.422 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:36:53.459 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:36:53.465 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 42.601ms +2021-08-21 09:36:53.465 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:36:53.469 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:36:53.496 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:36:53.496 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:36:53.497 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 88.7815ms +2021-08-21 09:36:59.058 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:36:59.059 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:36:59.059 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.8017ms +2021-08-21 09:36:59.061 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:36:59.062 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:36:59.064 +08:00 [INF] Successfully validated the token. +2021-08-21 09:36:59.087 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:36:59.087 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:36:59.087 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.1083ms +2021-08-21 09:36:59.297 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:36:59.297 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:36:59.297 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.7259ms +2021-08-21 09:36:59.301 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:36:59.301 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:36:59.305 +08:00 [INF] Successfully validated the token. +2021-08-21 09:36:59.306 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:36:59.311 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:36:59.311 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:36:59.316 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:36:59.316 +08:00 [INF] Authorization was successful. +2021-08-21 09:36:59.318 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:36:59.319 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:36:59.361 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:36:59.366 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 47.2336ms +2021-08-21 09:36:59.366 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:36:59.370 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:36:59.403 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:36:59.404 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:36:59.404 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 103.2098ms +2021-08-21 09:37:01.050 +08:00 [DBG] 887 recurring job(s) processed by scheduler. +2021-08-21 09:37:02.644 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:37:03.424 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:37:03.425 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:37:03.425 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5287ms +2021-08-21 09:37:03.427 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:37:03.427 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:37:03.429 +08:00 [INF] Successfully validated the token. +2021-08-21 09:37:03.451 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:37:03.451 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:37:03.452 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 24.9635ms +2021-08-21 09:37:03.535 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:37:03.536 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:37:03.538 +08:00 [INF] Successfully validated the token. +2021-08-21 09:37:03.539 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:37:03.542 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:37:03.542 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:37:03.545 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:37:03.545 +08:00 [INF] Authorization was successful. +2021-08-21 09:37:03.546 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:37:03.546 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:37:03.582 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:37:03.586 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 39.5368ms +2021-08-21 09:37:03.586 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:37:03.589 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:37:03.614 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:37:03.614 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:37:03.615 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 79.2257ms +2021-08-21 09:37:17.146 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:37:17.146 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:37:17.146 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5010ms +2021-08-21 09:37:17.148 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:37:17.148 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:37:17.151 +08:00 [INF] Successfully validated the token. +2021-08-21 09:37:17.188 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:37:17.188 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:37:17.188 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 40.1603ms +2021-08-21 09:37:17.275 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:37:17.275 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:37:17.276 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4844ms +2021-08-21 09:37:17.277 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:37:17.277 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:37:17.279 +08:00 [INF] Successfully validated the token. +2021-08-21 09:37:17.280 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:37:17.284 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:37:17.284 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:37:17.286 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:37:17.287 +08:00 [INF] Authorization was successful. +2021-08-21 09:37:17.288 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:37:17.288 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:37:17.332 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:37:17.337 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 48.9149ms +2021-08-21 09:37:17.337 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:37:17.341 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:37:17.373 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:37:17.373 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:37:17.373 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 96.1076ms +2021-08-21 09:37:26.372 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:37:26.372 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:37:26.372 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5172ms +2021-08-21 09:37:26.374 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:37:26.375 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:37:26.377 +08:00 [INF] Successfully validated the token. +2021-08-21 09:37:26.409 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:37:26.409 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:37:26.409 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 34.9677ms +2021-08-21 09:37:26.468 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:37:26.468 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:37:26.468 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.5086ms +2021-08-21 09:37:26.471 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:37:26.471 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:37:26.473 +08:00 [INF] Successfully validated the token. +2021-08-21 09:37:26.474 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:37:26.478 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:37:26.478 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:37:26.480 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:37:26.480 +08:00 [INF] Authorization was successful. +2021-08-21 09:37:26.481 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:37:26.482 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:37:26.512 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:37:26.516 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 33.8454ms +2021-08-21 09:37:26.516 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:37:26.519 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:37:26.545 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:37:26.545 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:37:26.545 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 74.3241ms +2021-08-21 09:37:32.666 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:37:37.575 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:37:37.575 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:37:37.576 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5441ms +2021-08-21 09:37:37.577 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:37:37.578 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:37:37.580 +08:00 [INF] Successfully validated the token. +2021-08-21 09:37:37.612 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:37:37.612 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:37:37.612 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 34.9848ms +2021-08-21 09:37:38.270 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:37:38.271 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:37:38.271 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4438ms +2021-08-21 09:37:38.273 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:37:38.273 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:37:38.275 +08:00 [INF] Successfully validated the token. +2021-08-21 09:37:38.276 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:37:38.280 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:37:38.280 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:37:38.282 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:37:38.282 +08:00 [INF] Authorization was successful. +2021-08-21 09:37:38.283 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:37:38.283 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:37:38.315 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:37:38.320 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 36.7381ms +2021-08-21 09:37:38.320 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:37:38.325 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:37:38.349 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:37:38.349 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:37:38.350 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 77.0962ms +2021-08-21 09:37:50.632 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:37:50.633 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:37:50.633 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5308ms +2021-08-21 09:37:50.635 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:37:50.635 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:37:50.638 +08:00 [INF] Successfully validated the token. +2021-08-21 09:37:50.660 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:37:50.660 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:37:50.661 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 25.6100ms +2021-08-21 09:37:51.272 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:37:51.272 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:37:51.272 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4579ms +2021-08-21 09:37:51.274 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:37:51.275 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:37:51.278 +08:00 [INF] Successfully validated the token. +2021-08-21 09:37:51.278 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:37:51.282 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:37:51.282 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:37:51.285 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:37:51.285 +08:00 [INF] Authorization was successful. +2021-08-21 09:37:51.286 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:37:51.286 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:37:51.315 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:37:51.319 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 32.5392ms +2021-08-21 09:37:51.319 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:37:51.322 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:37:51.346 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:37:51.346 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:37:51.346 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 71.9646ms +2021-08-21 09:37:59.492 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:37:59.492 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:37:59.492 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4761ms +2021-08-21 09:37:59.494 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:37:59.494 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:37:59.497 +08:00 [INF] Successfully validated the token. +2021-08-21 09:37:59.530 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:37:59.530 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:37:59.531 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 36.8081ms +2021-08-21 09:38:02.703 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:38:03.336 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:38:03.336 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:38:03.336 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5529ms +2021-08-21 09:38:03.339 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:38:03.340 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:38:03.342 +08:00 [INF] Successfully validated the token. +2021-08-21 09:38:03.364 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:38:03.364 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:38:03.364 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 24.8820ms +2021-08-21 09:38:03.442 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:38:03.442 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:38:03.442 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.5331ms +2021-08-21 09:38:03.445 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:38:03.446 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:38:03.448 +08:00 [INF] Successfully validated the token. +2021-08-21 09:38:03.449 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:38:03.453 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:38:03.454 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:38:03.457 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:38:03.457 +08:00 [INF] Authorization was successful. +2021-08-21 09:38:03.459 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:38:03.459 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:38:03.493 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:38:03.498 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 38.7709ms +2021-08-21 09:38:03.498 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:38:03.502 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:38:03.536 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:38:03.536 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:38:03.537 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 91.1960ms +2021-08-21 09:38:09.129 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:38:09.129 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:38:09.129 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4625ms +2021-08-21 09:38:09.131 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:38:09.131 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:38:09.133 +08:00 [INF] Successfully validated the token. +2021-08-21 09:38:09.167 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:38:09.168 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:38:09.168 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 36.9050ms +2021-08-21 09:38:09.274 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:38:09.275 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:38:09.275 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4417ms +2021-08-21 09:38:09.276 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:38:09.277 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:38:09.279 +08:00 [INF] Successfully validated the token. +2021-08-21 09:38:09.279 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:38:09.283 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:38:09.283 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:38:09.286 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:38:09.287 +08:00 [INF] Authorization was successful. +2021-08-21 09:38:09.288 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:38:09.288 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:38:09.323 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:38:09.328 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 39.9493ms +2021-08-21 09:38:09.328 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:38:09.332 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:38:09.365 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:38:09.365 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:38:09.365 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 89.0305ms +2021-08-21 09:38:12.951 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:38:12.951 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:38:12.951 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5589ms +2021-08-21 09:38:12.953 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:38:12.954 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:38:12.956 +08:00 [INF] Successfully validated the token. +2021-08-21 09:38:12.979 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:38:12.979 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:38:12.979 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.0781ms +2021-08-21 09:38:13.274 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:38:13.274 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:38:13.276 +08:00 [INF] Successfully validated the token. +2021-08-21 09:38:13.277 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:38:13.280 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:38:13.280 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:38:13.283 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:38:13.283 +08:00 [INF] Authorization was successful. +2021-08-21 09:38:13.284 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:38:13.284 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:38:13.313 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:38:13.317 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 33.0078ms +2021-08-21 09:38:13.317 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:38:13.320 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:38:13.352 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:38:13.352 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:38:13.352 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 78.2864ms +2021-08-21 09:38:32.724 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:38:32.747 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 09:38:37.237 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:38:37.238 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:38:37.238 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6802ms +2021-08-21 09:38:37.241 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:38:37.241 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:38:37.244 +08:00 [INF] Successfully validated the token. +2021-08-21 09:38:37.270 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:38:37.270 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:38:37.271 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 29.9238ms +2021-08-21 09:38:37.383 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:38:37.383 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:38:37.383 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.6168ms +2021-08-21 09:38:37.386 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:38:37.386 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:38:37.389 +08:00 [INF] Successfully validated the token. +2021-08-21 09:38:37.390 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:38:37.394 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:38:37.394 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:38:37.397 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:38:37.397 +08:00 [INF] Authorization was successful. +2021-08-21 09:38:37.399 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:38:37.399 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:38:37.436 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:38:37.441 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 41.7167ms +2021-08-21 09:38:37.441 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:38:37.444 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:38:37.472 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:38:37.472 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:38:37.473 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 87.1256ms +2021-08-21 09:38:47.149 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:38:47.149 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:38:47.149 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5019ms +2021-08-21 09:38:47.152 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:38:47.152 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:38:47.155 +08:00 [INF] Successfully validated the token. +2021-08-21 09:38:47.181 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:38:47.181 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:38:47.181 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 29.3385ms +2021-08-21 09:38:47.288 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:38:47.288 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:38:47.289 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.6688ms +2021-08-21 09:38:47.295 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:38:47.295 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:38:47.298 +08:00 [INF] Successfully validated the token. +2021-08-21 09:38:47.299 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:38:47.302 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:38:47.302 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:38:47.306 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:38:47.306 +08:00 [INF] Authorization was successful. +2021-08-21 09:38:47.308 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:38:47.308 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:38:47.346 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:38:47.351 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 43.0555ms +2021-08-21 09:38:47.351 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:38:47.355 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:38:47.388 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:38:47.388 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:38:47.388 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 93.3325ms +2021-08-21 09:38:53.860 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 09:39:00.882 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:39:00.882 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:39:00.882 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4856ms +2021-08-21 09:39:00.885 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:39:00.885 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:39:00.887 +08:00 [INF] Successfully validated the token. +2021-08-21 09:39:00.910 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:39:00.910 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:39:00.911 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.1096ms +2021-08-21 09:39:01.071 +08:00 [DBG] 346 recurring job(s) processed by scheduler. +2021-08-21 09:39:01.278 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:39:01.278 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:39:01.278 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4251ms +2021-08-21 09:39:01.280 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:39:01.280 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:39:01.283 +08:00 [INF] Successfully validated the token. +2021-08-21 09:39:01.284 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:39:01.288 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:39:01.288 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:39:01.291 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:39:01.292 +08:00 [INF] Authorization was successful. +2021-08-21 09:39:01.293 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:39:01.293 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:39:01.325 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:39:01.329 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 35.5924ms +2021-08-21 09:39:01.329 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:39:01.332 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:39:01.360 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:39:01.360 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:39:01.361 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 80.8522ms +2021-08-21 09:39:02.780 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:39:07.384 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:39:07.384 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:39:07.384 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4619ms +2021-08-21 09:39:07.386 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:39:07.386 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:39:07.389 +08:00 [INF] Successfully validated the token. +2021-08-21 09:39:07.411 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:39:07.411 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:39:07.411 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 25.2856ms +2021-08-21 09:39:07.496 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:39:07.497 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:39:07.497 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4921ms +2021-08-21 09:39:07.498 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:39:07.499 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:39:07.501 +08:00 [INF] Successfully validated the token. +2021-08-21 09:39:07.501 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:39:07.505 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:39:07.505 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:39:07.508 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:39:07.508 +08:00 [INF] Authorization was successful. +2021-08-21 09:39:07.509 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:39:07.509 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:39:07.544 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:39:07.548 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 39.3789ms +2021-08-21 09:39:07.548 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:39:07.552 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:39:07.579 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:39:07.579 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:39:07.580 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 81.1623ms +2021-08-21 09:39:25.256 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:39:25.257 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:39:25.257 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.7231ms +2021-08-21 09:39:25.260 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:39:25.260 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:39:25.263 +08:00 [INF] Successfully validated the token. +2021-08-21 09:39:25.291 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:39:25.291 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:39:25.292 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 31.8926ms +2021-08-21 09:39:25.396 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:39:25.397 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:39:25.397 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.5108ms +2021-08-21 09:39:25.398 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:39:25.399 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:39:25.401 +08:00 [INF] Successfully validated the token. +2021-08-21 09:39:25.401 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:39:25.405 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:39:25.405 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:39:25.408 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:39:25.408 +08:00 [INF] Authorization was successful. +2021-08-21 09:39:25.410 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:39:25.410 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:39:25.620 +08:00 [ERR] An error occurred using the connection to database 'CompanyNameProjectNameDB' on server 'localhost'. +2021-08-21 09:39:25.664 +08:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +{ + "code": null, + "message": "\u5BF9\u4E0D\u8D77,\u5728\u5904\u7406\u4F60\u7684\u8BF7\u6C42\u671F\u95F4,\u4EA7\u751F\u4E86\u4E00\u4E2A\u670D\u52A1\u5668\u5185\u90E8\u9519\u8BEF!", + "details": null, + "data": {}, + "validationErrors": null +} + +2021-08-21 09:39:25.664 +08:00 [ERR] The operation was canceled. +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.ConnectionPool.GetSessionAsync(MySqlConnection connection, Int32 startTickCount, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/ConnectionPool.cs:line 24 + at MySqlConnector.MySqlConnection.CreateSessionAsync(ConnectionPool pool, Int32 startTickCount, Nullable`1 ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlConnection.cs:line 846 + at MySqlConnector.MySqlConnection.OpenAsync(Nullable`1 ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlConnection.cs:line 410 + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenInternalAsync(Boolean errorsExpected, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenInternalAsync(Boolean errorsExpected, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenAsync(CancellationToken cancellationToken, Boolean errorsExpected) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlRelationalConnection.OpenAsync(CancellationToken cancellationToken, Boolean errorsExpected) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.BeginTransactionAsync(IsolationLevel isolationLevel, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.BeginTransactionAsync(CancellationToken cancellationToken) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextWithTransactionAsync(IUnitOfWork unitOfWork) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextAsync(IUnitOfWork unitOfWork) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextAsync(IUnitOfWork unitOfWork, String connectionStringName, String connectionString) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.GetDbContextAsync() + at Volo.Abp.Domain.Repositories.EntityFrameworkCore.EfCoreRepository`2.GetDbSetAsync() + at Volo.Abp.Identity.EntityFrameworkCore.EfCoreIdentityUserRepository.GetCountAsync(String filter, CancellationToken cancellationToken) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at CompanyName.ProjectName.Users.UserAppService.ListAsync(PagingUserListInput input) in D:\abp\aspnet-core\services\src\CompanyName.ProjectName.Application\Users\UserAppService.cs:line 47 + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.GlobalFeatures.GlobalFeatureInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Auditing.AuditingInterceptor.ProceedByLoggingAsync(IAbpMethodInvocation invocation, IAuditingHelper auditingHelper, IAuditLogScope auditLogScope) + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Validation.ValidationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at lambda_method2869(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync() +--- End of stack trace from previous location --- + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) +2021-08-21 09:39:25.664 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2021-08-21 09:39:25.665 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 254.8414ms +2021-08-21 09:39:25.665 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:39:25.774 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:39:25.774 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:39:25.774 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 500 - application/json;+charset=utf-8 375.7230ms +2021-08-21 09:39:29.382 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:39:29.382 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:39:29.383 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5703ms +2021-08-21 09:39:29.384 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:39:29.385 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:39:29.387 +08:00 [INF] Successfully validated the token. +2021-08-21 09:39:29.419 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:39:29.419 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:39:29.419 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 35.0343ms +2021-08-21 09:39:29.488 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:39:29.489 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:39:29.491 +08:00 [INF] Successfully validated the token. +2021-08-21 09:39:29.491 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:39:29.494 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:39:29.495 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:39:29.497 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:39:29.497 +08:00 [INF] Authorization was successful. +2021-08-21 09:39:29.498 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:39:29.498 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:39:29.533 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:39:29.537 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 38.5006ms +2021-08-21 09:39:29.537 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:39:29.540 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:39:29.567 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:39:29.567 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:39:29.567 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 78.9084ms +2021-08-21 09:39:32.843 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:39:34.633 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:39:34.633 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:39:34.634 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4489ms +2021-08-21 09:39:34.636 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:39:34.636 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:39:34.638 +08:00 [INF] Successfully validated the token. +2021-08-21 09:39:34.676 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:39:34.676 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:39:34.677 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 41.0424ms +2021-08-21 09:39:35.278 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:39:35.279 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:39:35.279 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.6244ms +2021-08-21 09:39:35.281 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:39:35.282 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:39:35.285 +08:00 [INF] Successfully validated the token. +2021-08-21 09:39:35.286 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:39:35.294 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:39:35.294 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:39:35.298 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:39:35.298 +08:00 [INF] Authorization was successful. +2021-08-21 09:39:35.299 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:39:35.299 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:39:35.332 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:39:35.335 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 36.4193ms +2021-08-21 09:39:35.335 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:39:35.339 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:39:35.368 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:39:35.368 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:39:35.368 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 86.5154ms +2021-08-21 09:40:02.868 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:40:15.493 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:40:15.493 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:40:15.494 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.8585ms +2021-08-21 09:40:15.496 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:40:15.496 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:40:15.499 +08:00 [INF] Successfully validated the token. +2021-08-21 09:40:15.537 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:40:15.537 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:40:15.537 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 41.1634ms +2021-08-21 09:40:16.278 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:40:16.279 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:40:16.279 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.5004ms +2021-08-21 09:40:16.281 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:40:16.281 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:40:16.283 +08:00 [INF] Successfully validated the token. +2021-08-21 09:40:16.284 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:40:16.288 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:40:16.288 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:40:16.291 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:40:16.291 +08:00 [INF] Authorization was successful. +2021-08-21 09:40:16.292 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:40:16.292 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:40:16.326 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:40:16.330 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 37.5613ms +2021-08-21 09:40:16.330 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:40:16.333 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:40:16.359 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:40:16.359 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:40:16.360 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 78.7706ms +2021-08-21 09:40:23.901 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:40:23.901 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:40:23.901 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5126ms +2021-08-21 09:40:23.903 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:40:23.903 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:40:23.906 +08:00 [INF] Successfully validated the token. +2021-08-21 09:40:23.931 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:40:23.931 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:40:23.932 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 28.4519ms +2021-08-21 09:40:24.287 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:40:24.288 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:40:24.288 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4688ms +2021-08-21 09:40:24.290 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:40:24.290 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:40:24.292 +08:00 [INF] Successfully validated the token. +2021-08-21 09:40:24.293 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:40:24.298 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:40:24.298 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:40:24.301 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:40:24.301 +08:00 [INF] Authorization was successful. +2021-08-21 09:40:24.302 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:40:24.302 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:40:24.335 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:40:24.339 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 36.7156ms +2021-08-21 09:40:24.339 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:40:24.343 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:40:24.372 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:40:24.372 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:40:24.372 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 82.9204ms +2021-08-21 09:40:32.936 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:40:35.291 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:40:35.292 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:40:35.292 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5638ms +2021-08-21 09:40:35.294 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:40:35.295 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:40:35.297 +08:00 [INF] Successfully validated the token. +2021-08-21 09:40:35.318 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:40:35.318 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:40:35.319 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 24.3544ms +2021-08-21 09:40:35.442 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:40:35.443 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:40:35.443 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.7179ms +2021-08-21 09:40:35.446 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:40:35.447 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:40:35.450 +08:00 [INF] Successfully validated the token. +2021-08-21 09:40:35.451 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:40:35.455 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:40:35.455 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:40:35.459 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:40:35.459 +08:00 [INF] Authorization was successful. +2021-08-21 09:40:35.461 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:40:35.461 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:40:35.499 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:40:35.503 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 42.2138ms +2021-08-21 09:40:35.503 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:40:35.542 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:40:35.569 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:40:35.570 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:40:35.570 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 123.5021ms +2021-08-21 09:40:36.534 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 09:40:39.912 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:40:39.912 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:40:39.912 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6643ms +2021-08-21 09:40:39.915 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:40:39.915 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:40:39.917 +08:00 [INF] Successfully validated the token. +2021-08-21 09:40:39.939 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:40:39.939 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:40:39.939 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 24.7050ms +2021-08-21 09:40:40.280 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:40:40.280 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:40:40.284 +08:00 [INF] Successfully validated the token. +2021-08-21 09:40:40.284 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:40:40.288 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:40:40.288 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:40:40.291 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:40:40.291 +08:00 [INF] Authorization was successful. +2021-08-21 09:40:40.292 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:40:40.293 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:40:40.325 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:40:40.329 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 36.0505ms +2021-08-21 09:40:40.329 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:40:40.332 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:40:40.357 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:40:40.357 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:40:40.358 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 77.7884ms +2021-08-21 09:40:54.451 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 09:41:01.052 +08:00 [DBG] 409 recurring job(s) processed by scheduler. +2021-08-21 09:41:02.937 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:41:20.614 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:41:20.614 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:41:20.614 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4765ms +2021-08-21 09:41:20.616 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:41:20.616 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:41:20.619 +08:00 [INF] Successfully validated the token. +2021-08-21 09:41:20.642 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:41:20.642 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:41:20.642 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.0413ms +2021-08-21 09:41:21.259 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:41:21.259 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:41:21.259 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.5076ms +2021-08-21 09:41:21.261 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:41:21.262 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:41:21.264 +08:00 [INF] Successfully validated the token. +2021-08-21 09:41:21.265 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:41:21.268 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:41:21.268 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:41:21.271 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:41:21.271 +08:00 [INF] Authorization was successful. +2021-08-21 09:41:21.272 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:41:21.272 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:41:21.307 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:41:21.311 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 38.718ms +2021-08-21 09:41:21.311 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:41:21.314 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:41:21.338 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:41:21.338 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:41:21.338 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 76.8170ms +2021-08-21 09:41:31.923 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 09:41:32.958 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:41:34.278 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:41:34.278 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:41:34.279 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5458ms +2021-08-21 09:41:34.280 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:41:34.281 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:41:34.283 +08:00 [INF] Successfully validated the token. +2021-08-21 09:41:34.306 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:41:34.306 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:41:34.306 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 25.4018ms +2021-08-21 09:41:34.425 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:41:34.425 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:41:34.425 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.5474ms +2021-08-21 09:41:34.428 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:41:34.429 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:41:34.432 +08:00 [INF] Successfully validated the token. +2021-08-21 09:41:34.433 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:41:34.438 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:41:34.438 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:41:34.442 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:41:34.442 +08:00 [INF] Authorization was successful. +2021-08-21 09:41:34.444 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:41:34.445 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:41:34.482 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:41:34.487 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 41.9392ms +2021-08-21 09:41:34.487 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:41:34.491 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:41:34.523 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:41:34.523 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:41:34.524 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 95.1507ms +2021-08-21 09:42:02.973 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:42:32.997 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:42:46.743 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 09:43:01.045 +08:00 [DBG] 932 recurring job(s) processed by scheduler. +2021-08-21 09:43:03.021 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:43:33.052 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:43:41.184 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:43:41.184 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:43:41.184 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5504ms +2021-08-21 09:43:41.186 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:43:41.187 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:43:41.189 +08:00 [INF] Successfully validated the token. +2021-08-21 09:43:41.210 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:43:41.210 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:43:41.210 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 23.4163ms +2021-08-21 09:43:41.300 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:43:41.300 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:43:41.300 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.6148ms +2021-08-21 09:43:41.305 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:43:41.305 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:43:41.308 +08:00 [INF] Successfully validated the token. +2021-08-21 09:43:41.309 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:43:41.314 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:43:41.315 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:43:41.319 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:43:41.319 +08:00 [INF] Authorization was successful. +2021-08-21 09:43:41.320 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:43:41.320 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:43:41.357 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:43:41.362 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 41.0991ms +2021-08-21 09:43:41.362 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:43:41.365 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:43:41.394 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:43:41.394 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:43:41.394 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 89.5257ms +2021-08-21 09:43:46.392 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:43:46.392 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:43:46.392 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5016ms +2021-08-21 09:43:46.394 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:43:46.394 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:43:46.397 +08:00 [INF] Successfully validated the token. +2021-08-21 09:43:46.418 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:43:46.418 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:43:46.419 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 24.8106ms +2021-08-21 09:43:46.533 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:43:46.533 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:43:46.534 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4482ms +2021-08-21 09:43:46.538 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:43:46.539 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:43:46.541 +08:00 [INF] Successfully validated the token. +2021-08-21 09:43:46.542 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:43:46.546 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:43:46.546 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:43:46.549 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:43:46.550 +08:00 [INF] Authorization was successful. +2021-08-21 09:43:46.551 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:43:46.551 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:43:46.585 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:43:46.589 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 38.3472ms +2021-08-21 09:43:46.589 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:43:46.593 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:43:46.620 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:43:46.620 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:43:46.621 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 82.8236ms +2021-08-21 09:44:03.078 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:44:07.713 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:44:07.713 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:44:07.713 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5207ms +2021-08-21 09:44:07.715 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:44:07.715 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:44:07.718 +08:00 [INF] Successfully validated the token. +2021-08-21 09:44:07.741 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:44:07.742 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:44:07.742 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.8731ms +2021-08-21 09:44:08.245 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:44:08.245 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:44:08.245 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4638ms +2021-08-21 09:44:08.247 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:44:08.248 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:44:08.251 +08:00 [INF] Successfully validated the token. +2021-08-21 09:44:08.251 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:44:08.256 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:44:08.256 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:44:08.258 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:44:08.258 +08:00 [INF] Authorization was successful. +2021-08-21 09:44:08.259 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:44:08.260 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:44:08.290 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:44:08.293 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 33.4292ms +2021-08-21 09:44:08.293 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:44:08.296 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:44:08.323 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:44:08.323 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:44:08.324 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 76.6473ms +2021-08-21 09:44:33.102 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:45:01.064 +08:00 [DBG] 817 recurring job(s) processed by scheduler. +2021-08-21 09:45:03.135 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:45:06.708 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:45:06.708 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:45:06.708 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5462ms +2021-08-21 09:45:06.710 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:45:06.711 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:45:06.713 +08:00 [INF] Successfully validated the token. +2021-08-21 09:45:06.750 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:45:06.750 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:45:06.750 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 39.9810ms +2021-08-21 09:45:11.524 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:45:11.524 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:45:11.524 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4694ms +2021-08-21 09:45:11.526 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:45:11.526 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:45:11.529 +08:00 [INF] Successfully validated the token. +2021-08-21 09:45:11.551 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:45:11.551 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:45:11.551 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 24.7920ms +2021-08-21 09:45:12.237 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:45:12.237 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:45:12.237 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4393ms +2021-08-21 09:45:12.239 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:45:12.239 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:45:12.241 +08:00 [INF] Successfully validated the token. +2021-08-21 09:45:12.242 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:45:12.245 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:45:12.245 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:45:12.248 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:45:12.248 +08:00 [INF] Authorization was successful. +2021-08-21 09:45:12.249 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:45:12.249 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:45:12.281 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:45:12.285 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 35.3189ms +2021-08-21 09:45:12.285 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:45:12.288 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:45:12.317 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:45:12.317 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:45:12.317 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 78.6251ms +2021-08-21 09:45:30.539 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:45:30.539 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:45:30.539 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5400ms +2021-08-21 09:45:30.541 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:45:30.541 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:45:30.544 +08:00 [INF] Successfully validated the token. +2021-08-21 09:45:30.599 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:45:30.599 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:45:30.600 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 58.5157ms +2021-08-21 09:45:31.235 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:45:31.235 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:45:31.235 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.5934ms +2021-08-21 09:45:31.238 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:45:31.239 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:45:31.241 +08:00 [INF] Successfully validated the token. +2021-08-21 09:45:31.242 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:45:31.245 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:45:31.245 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:45:31.248 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:45:31.248 +08:00 [INF] Authorization was successful. +2021-08-21 09:45:31.249 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:45:31.249 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:45:31.279 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:45:31.283 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 34.1653ms +2021-08-21 09:45:31.283 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:45:31.287 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:45:31.312 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:45:31.313 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:45:31.313 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 74.6020ms +2021-08-21 09:45:33.206 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:46:03.229 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:46:31.915 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 09:46:33.253 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:47:01.046 +08:00 [DBG] 882 recurring job(s) processed by scheduler. +2021-08-21 09:47:03.265 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:47:33.287 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:48:03.300 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:48:33.311 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:49:01.323 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 09:49:03.334 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:49:33.354 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:50:03.365 +08:00 [DBG] Server szqh003802a:7996:d516eb17 heartbeat successfully sent +2021-08-21 09:50:28.744 +08:00 [INF] Starting CompanyName.ProjectName.HttpApi.Host. +2021-08-21 09:50:35.105 +08:00 [INF] User profile is available. Using 'C:\Users\wangjun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. +2021-08-21 09:50:35.222 +08:00 [INF] Loaded ABP modules: +2021-08-21 09:50:35.222 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiHostModule +2021-08-21 09:50:35.222 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiModule +2021-08-21 09:50:35.222 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationContractsModule +2021-08-21 09:50:35.222 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainSharedModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainSharedModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.Data.AbpDataModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainSharedModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule +2021-08-21 09:50:35.222 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationContractsModule +2021-08-21 09:50:35.222 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainSharedModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.UI.AbpUiModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule +2021-08-21 09:50:35.222 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementHttpApiModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.Caching.StackExchangeRedis.AbpCachingStackExchangeRedisModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule +2021-08-21 09:50:35.222 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationModule +2021-08-21 09:50:35.222 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainModule +2021-08-21 09:50:35.222 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule +2021-08-21 09:50:35.223 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule +2021-08-21 09:50:35.223 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsModule +2021-08-21 09:50:35.223 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule +2021-08-21 09:50:35.223 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule +2021-08-21 09:50:35.223 +08:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2021-08-21 09:50:35.223 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule +2021-08-21 09:50:35.223 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2021-08-21 09:50:35.223 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2021-08-21 09:50:35.223 +08:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule +2021-08-21 09:50:35.223 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2021-08-21 09:50:35.223 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainModule +2021-08-21 09:50:35.223 +08:00 [INF] - Volo.Abp.PermissionManagement.IdentityServer.AbpPermissionManagementDomainIdentityServerModule +2021-08-21 09:50:35.223 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2021-08-21 09:50:35.223 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule +2021-08-21 09:50:35.223 +08:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule +2021-08-21 09:50:35.223 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule +2021-08-21 09:50:35.223 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainModule +2021-08-21 09:50:35.223 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule +2021-08-21 09:50:35.223 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2021-08-21 09:50:35.223 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2021-08-21 09:50:35.223 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule +2021-08-21 09:50:35.223 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule +2021-08-21 09:50:35.223 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule +2021-08-21 09:50:35.223 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainModule +2021-08-21 09:50:35.223 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainSharedModule +2021-08-21 09:50:35.223 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationModule +2021-08-21 09:50:35.223 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreDbMigrationsModule +2021-08-21 09:50:35.223 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreModule +2021-08-21 09:50:35.223 +08:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2021-08-21 09:50:35.223 +08:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2021-08-21 09:50:35.223 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2021-08-21 09:50:35.223 +08:00 [INF] - Volo.Abp.IdentityServer.EntityFrameworkCore.AbpIdentityServerEntityFrameworkCoreModule +2021-08-21 09:50:35.223 +08:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2021-08-21 09:50:35.223 +08:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2021-08-21 09:50:35.223 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.MySQL.AbpEntityFrameworkCoreMySQLModule +2021-08-21 09:50:35.223 +08:00 [INF] - Volo.Abp.BackgroundJobs.EntityFrameworkCore.AbpBackgroundJobsEntityFrameworkCoreModule +2021-08-21 09:50:35.223 +08:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule +2021-08-21 09:50:35.223 +08:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule +2021-08-21 09:50:35.223 +08:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule +2021-08-21 09:50:35.223 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.FreeSqlMySql.QueryManagementFreeSqlMySqlModule +2021-08-21 09:50:35.223 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.EntityFrameworkCore.DataDictionaryManagementEntityFrameworkCoreModule +2021-08-21 09:50:35.223 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule +2021-08-21 09:50:35.223 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule +2021-08-21 09:50:35.223 +08:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2021-08-21 09:50:35.223 +08:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule +2021-08-21 09:50:35.223 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule +2021-08-21 09:50:35.223 +08:00 [INF] - Volo.Abp.BackgroundJobs.Hangfire.AbpBackgroundJobsHangfireModule +2021-08-21 09:50:35.223 +08:00 [INF] - Volo.Abp.Hangfire.AbpHangfireModule +2021-08-21 09:50:35.305 +08:00 [DBG] Started background worker: Volo.Abp.BackgroundJobs.BackgroundJobWorker +2021-08-21 09:50:35.307 +08:00 [DBG] Started background worker: Volo.Abp.IdentityServer.Tokens.TokenCleanupBackgroundWorker +2021-08-21 09:50:35.458 +08:00 [INF] DB tables already exist. Exit install +2021-08-21 09:50:35.472 +08:00 [INF] Starting Hangfire Server using job storage: 'Server: localhost@CompanyNameProjectNameHangfireDB' +2021-08-21 09:50:35.472 +08:00 [INF] Using the following options for SQL Server job storage: +2021-08-21 09:50:35.473 +08:00 [INF] Queue poll interval: 00:00:15. +2021-08-21 09:50:35.473 +08:00 [INF] Using the following options for Hangfire Server: + Worker count: 20 + Listening queues: 'default' + Shutdown timeout: 00:00:15 + Schedule polling interval: 00:00:15 +2021-08-21 09:50:35.497 +08:00 [DBG] Execution loop BackgroundServerProcess:92385dca has started in 5.895 ms +2021-08-21 09:50:35.622 +08:00 [INF] Server szqh003802a:26404:47ac0aeb successfully announced in 116.7284 ms +2021-08-21 09:50:35.627 +08:00 [INF] Server szqh003802a:26404:47ac0aeb is starting the registered dispatchers: ServerWatchdog, ServerJobCancellationWatcher, ExpirationManager, CountersAggregator, Worker, DelayedJobScheduler, RecurringJobScheduler... +2021-08-21 09:50:35.627 +08:00 [DBG] Execution loop ServerHeartbeatProcess:d315b4cc has started in 4.2854 ms +2021-08-21 09:50:35.631 +08:00 [DBG] Execution loop ServerWatchdog:72ad60a8 has started in 3.6757 ms +2021-08-21 09:50:35.632 +08:00 [DBG] Execution loop ServerJobCancellationWatcher:7e62b532 has started in 4.3674 ms +2021-08-21 09:50:35.636 +08:00 [DBG] Execution loop ExpirationManager:7aa63018 has started in 6.3208 ms +2021-08-21 09:50:35.638 +08:00 [DBG] Execution loop CountersAggregator:287a3fec has started in 5.0575 ms +2021-08-21 09:50:35.639 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 09:50:35.639 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-08-21 09:50:35.643 +08:00 [DBG] Execution loop Worker:90bf22d1 has started in 7.004 ms +2021-08-21 09:50:35.644 +08:00 [DBG] Execution loop Worker:01969236 has started in 8.3234 ms +2021-08-21 09:50:35.670 +08:00 [DBG] Execution loop Worker:a6bb4a0a has started in 34.0293 ms +2021-08-21 09:50:35.670 +08:00 [DBG] Execution loop Worker:1b6d0799 has started in 34.0294 ms +2021-08-21 09:50:35.674 +08:00 [DBG] Execution loop Worker:f6f765bc has started in 37.957 ms +2021-08-21 09:50:35.676 +08:00 [DBG] Execution loop Worker:990b0d87 has started in 39.5177 ms +2021-08-21 09:50:35.678 +08:00 [DBG] Execution loop Worker:5ccee426 has started in 41.7366 ms +2021-08-21 09:50:35.680 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-08-21 09:50:35.682 +08:00 [DBG] Execution loop Worker:c5ac6679 has started in 45.7169 ms +2021-08-21 09:50:35.686 +08:00 [DBG] Execution loop Worker:31c5fde2 has started in 49.3843 ms +2021-08-21 09:50:35.692 +08:00 [DBG] Execution loop Worker:1368bc93 has started in 56.1579 ms +2021-08-21 09:50:35.696 +08:00 [DBG] Execution loop Worker:f39040ae has started in 59.739 ms +2021-08-21 09:50:35.705 +08:00 [DBG] Execution loop Worker:f0ae3b8c has started in 68.593 ms +2021-08-21 09:50:35.709 +08:00 [DBG] Execution loop Worker:a8f7e866 has started in 73.4812 ms +2021-08-21 09:50:35.749 +08:00 [DBG] Execution loop Worker:601fb10d has started in 113.4701 ms +2021-08-21 09:50:35.750 +08:00 [DBG] Execution loop Worker:1d72583e has started in 113.511 ms +2021-08-21 09:50:35.765 +08:00 [DBG] Execution loop Worker:35e7e9a6 has started in 129.2218 ms +2021-08-21 09:50:35.778 +08:00 [DBG] Execution loop Worker:d5b397fe has started in 141.5277 ms +2021-08-21 09:50:35.782 +08:00 [DBG] removed records count=0 +2021-08-21 09:50:35.782 +08:00 [DBG] Execution loop Worker:4666bd58 has started in 145.5666 ms +2021-08-21 09:50:35.782 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-08-21 09:50:35.788 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-08-21 09:50:35.793 +08:00 [DBG] Execution loop Worker:38ba566c has started in 156.8914 ms +2021-08-21 09:50:35.798 +08:00 [DBG] Execution loop Worker:21154e71 has started in 161.9371 ms +2021-08-21 09:50:35.802 +08:00 [INF] Server szqh003802a:26404:47ac0aeb all the dispatchers started +2021-08-21 09:50:35.802 +08:00 [DBG] Execution loop DelayedJobScheduler:7762e9cf has started in 8.7214 ms +2021-08-21 09:50:35.804 +08:00 [DBG] Execution loop RecurringJobScheduler:11c26ff6 has started in 7.5883 ms +2021-08-21 09:50:35.807 +08:00 [DBG] removed records count=0 +2021-08-21 09:50:35.807 +08:00 [DBG] Removing outdated records from table 'List'... +2021-08-21 09:50:35.809 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-08-21 09:50:35.827 +08:00 [DBG] removed records count=0 +2021-08-21 09:50:35.828 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-08-21 09:50:35.833 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-08-21 09:50:35.852 +08:00 [DBG] removed records count=0 +2021-08-21 09:50:35.852 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-08-21 09:50:35.860 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-08-21 09:50:35.876 +08:00 [DBG] removed records count=0 +2021-08-21 09:50:36.343 +08:00 [INF] Initialized all ABP modules. +2021-08-21 09:50:36.418 +08:00 [INF] Now listening on: http://localhost:44315 +2021-08-21 09:50:36.419 +08:00 [INF] Application started. Press Ctrl+C to shut down. +2021-08-21 09:50:36.419 +08:00 [INF] Hosting environment: Development +2021-08-21 09:50:36.419 +08:00 [INF] Content root path: D:\abp\aspnet-core\services\src\CompanyName.ProjectName.HttpApi.Host +2021-08-21 09:50:36.703 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/ - - +2021-08-21 09:50:39.113 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-08-21 09:50:39.183 +08:00 [INF] Route matched with {action = "Index", controller = "Home", area = "", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult Index() on controller CompanyName.ProjectName.Controllers.HomeController (CompanyName.ProjectName.HttpApi.Host). +2021-08-21 09:50:39.222 +08:00 [INF] Executing RedirectResult, redirecting to /swagger. +2021-08-21 09:50:39.229 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host) in 42.502ms +2021-08-21 09:50:39.230 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-08-21 09:50:39.249 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/ - - - 302 0 - 2546.9833ms +2021-08-21 09:50:39.264 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/index.html - - +2021-08-21 09:50:39.314 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/index.html - - - 200 - text/html;charset=utf-8 50.1279ms +2021-08-21 09:50:39.465 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - +2021-08-21 09:50:39.473 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/favicon-32x32.png - - +2021-08-21 09:50:39.492 +08:00 [INF] Sending file. Request path: '/favicon-32x32.png'. Physical path: 'N/A' +2021-08-21 09:50:39.492 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/favicon-32x32.png - - - 200 628 image/png 18.9176ms +2021-08-21 09:50:39.820 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 354.8236ms +2021-08-21 09:50:57.327 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:50:57.337 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:50:57.342 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 14.9820ms +2021-08-21 09:50:57.346 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:50:57.346 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:50:57.411 +08:00 [INF] Successfully validated the token. +2021-08-21 09:50:57.434 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:50:57.435 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:50:57.435 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 1.2447ms +2021-08-21 09:50:57.438 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:50:57.440 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:50:57.445 +08:00 [INF] Successfully validated the token. +2021-08-21 09:50:57.624 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:50:57.641 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:50:57.645 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:50:57.648 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:50:57.652 +08:00 [INF] Authorization was successful. +2021-08-21 09:50:57.656 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:50:57.671 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:50:58.303 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:50:58.303 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:50:58.308 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 962.2818ms +2021-08-21 09:50:59.117 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:50:59.143 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 1471.934ms +2021-08-21 09:50:59.144 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:50:59.160 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:50:59.228 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:50:59.228 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:50:59.231 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 1792.4187ms +2021-08-21 09:51:04.451 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:51:04.451 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:51:04.451 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5070ms +2021-08-21 09:51:04.453 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:51:04.453 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:51:04.455 +08:00 [INF] Successfully validated the token. +2021-08-21 09:51:04.503 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:51:04.503 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:51:04.503 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 50.2527ms +2021-08-21 09:51:05.688 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 09:51:06.071 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 09:51:09.311 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:51:09.311 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:51:09.311 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5338ms +2021-08-21 09:51:09.314 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:51:09.314 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:51:09.316 +08:00 [INF] Successfully validated the token. +2021-08-21 09:51:09.339 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:51:09.339 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:51:09.340 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.0320ms +2021-08-21 09:51:09.413 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:51:09.414 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:51:09.414 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4772ms +2021-08-21 09:51:09.417 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:51:09.417 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:51:09.419 +08:00 [INF] Successfully validated the token. +2021-08-21 09:51:09.420 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:51:09.424 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:51:09.425 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:51:09.428 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:51:09.428 +08:00 [INF] Authorization was successful. +2021-08-21 09:51:09.429 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:51:09.430 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:51:09.465 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:51:09.469 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 39.2017ms +2021-08-21 09:51:09.469 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:51:09.472 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:51:09.506 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:51:09.506 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:51:09.507 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 90.0757ms +2021-08-21 09:51:35.721 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 09:52:01.842 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:52:01.843 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:52:01.843 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.8226ms +2021-08-21 09:52:01.850 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:52:01.850 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:52:01.853 +08:00 [INF] Successfully validated the token. +2021-08-21 09:52:01.891 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:52:01.891 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:52:01.891 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 41.3811ms +2021-08-21 09:52:02.228 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:52:02.228 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:52:02.228 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4603ms +2021-08-21 09:52:02.231 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:52:02.232 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:52:02.234 +08:00 [INF] Successfully validated the token. +2021-08-21 09:52:02.235 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:52:02.239 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:52:02.239 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:52:02.242 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:52:02.242 +08:00 [INF] Authorization was successful. +2021-08-21 09:52:02.243 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:52:02.243 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:52:02.280 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:52:02.284 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 40.8836ms +2021-08-21 09:52:02.284 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:52:02.288 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:52:02.321 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:52:02.321 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:52:02.322 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 90.5347ms +2021-08-21 09:52:05.767 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 09:52:24.464 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:52:24.464 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:52:24.465 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5257ms +2021-08-21 09:52:24.467 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:52:24.467 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:52:24.469 +08:00 [INF] Successfully validated the token. +2021-08-21 09:52:24.494 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:52:24.494 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:52:24.494 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 27.8827ms +2021-08-21 09:52:25.227 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:52:25.227 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:52:25.227 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.6179ms +2021-08-21 09:52:25.230 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:52:25.230 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:52:25.233 +08:00 [INF] Successfully validated the token. +2021-08-21 09:52:25.234 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:52:25.238 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:52:25.238 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:52:25.241 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:52:25.241 +08:00 [INF] Authorization was successful. +2021-08-21 09:52:25.242 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:52:25.242 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:52:25.280 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:52:25.284 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 41.7499ms +2021-08-21 09:52:25.284 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:52:25.287 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:52:25.315 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:52:25.315 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:52:25.315 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 85.3033ms +2021-08-21 09:52:35.837 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 09:52:37.599 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:52:37.599 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:52:37.599 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4754ms +2021-08-21 09:52:37.602 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:52:37.603 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:52:37.605 +08:00 [INF] Successfully validated the token. +2021-08-21 09:52:37.630 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:52:37.630 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:52:37.630 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 27.6406ms +2021-08-21 09:52:38.245 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:52:38.245 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:52:38.245 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4602ms +2021-08-21 09:52:38.247 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:52:38.247 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:52:38.249 +08:00 [INF] Successfully validated the token. +2021-08-21 09:52:38.250 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:52:38.254 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:52:38.255 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:52:38.258 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:52:38.258 +08:00 [INF] Authorization was successful. +2021-08-21 09:52:38.259 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:52:38.260 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:52:38.295 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:52:38.299 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 39.4685ms +2021-08-21 09:52:38.299 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:52:38.303 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:52:38.333 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:52:38.333 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:52:38.334 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 86.8209ms +2021-08-21 09:52:42.747 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:52:42.747 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:52:42.748 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.7496ms +2021-08-21 09:52:42.750 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:52:42.751 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:52:42.754 +08:00 [INF] Successfully validated the token. +2021-08-21 09:52:42.780 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:52:42.780 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:52:42.780 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 30.1827ms +2021-08-21 09:52:43.235 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:52:43.235 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:52:43.238 +08:00 [INF] Successfully validated the token. +2021-08-21 09:52:43.238 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:52:43.242 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:52:43.242 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:52:43.246 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:52:43.246 +08:00 [INF] Authorization was successful. +2021-08-21 09:52:43.247 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:52:43.248 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:52:43.283 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:52:43.287 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 39.1931ms +2021-08-21 09:52:43.287 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:52:43.290 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:52:43.318 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:52:43.318 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:52:43.319 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 83.9704ms +2021-08-21 09:53:05.869 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 09:53:10.370 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:53:10.370 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:53:10.370 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4875ms +2021-08-21 09:53:10.372 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:53:10.373 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:53:10.375 +08:00 [INF] Successfully validated the token. +2021-08-21 09:53:10.399 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:53:10.399 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:53:10.400 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 27.0974ms +2021-08-21 09:53:10.471 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:53:10.472 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:53:10.472 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.6279ms +2021-08-21 09:53:10.474 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:53:10.475 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:53:10.477 +08:00 [INF] Successfully validated the token. +2021-08-21 09:53:10.478 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:53:10.483 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:53:10.483 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:53:10.486 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:53:10.486 +08:00 [INF] Authorization was successful. +2021-08-21 09:53:10.487 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:53:10.487 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:53:10.523 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:53:10.527 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 39.9157ms +2021-08-21 09:53:10.527 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:53:10.531 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:53:10.558 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:53:10.558 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:53:10.559 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 84.2415ms +2021-08-21 09:53:26.041 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 09:53:35.879 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 09:53:42.606 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:53:42.606 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:53:42.606 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4915ms +2021-08-21 09:53:42.608 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:53:42.609 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:53:42.612 +08:00 [INF] Successfully validated the token. +2021-08-21 09:53:42.634 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:53:42.634 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:53:42.634 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.0072ms +2021-08-21 09:53:43.244 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:53:43.244 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:53:43.245 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.5358ms +2021-08-21 09:53:43.247 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:53:43.247 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:53:43.249 +08:00 [INF] Successfully validated the token. +2021-08-21 09:53:43.250 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:53:43.254 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:53:43.254 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:53:43.257 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:53:43.257 +08:00 [INF] Authorization was successful. +2021-08-21 09:53:43.258 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:53:43.259 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:53:43.295 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:53:43.299 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 40.1372ms +2021-08-21 09:53:43.299 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:53:43.303 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:53:43.331 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:53:43.331 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:53:43.331 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 84.8632ms +2021-08-21 09:53:47.952 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 09:53:51.885 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:53:51.885 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:53:51.885 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5054ms +2021-08-21 09:53:51.888 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:53:51.888 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:53:51.891 +08:00 [INF] Successfully validated the token. +2021-08-21 09:53:51.914 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:53:51.914 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:53:51.915 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.8419ms +2021-08-21 09:53:56.927 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:53:56.927 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:53:56.928 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4949ms +2021-08-21 09:53:56.930 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:53:56.930 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:53:56.932 +08:00 [INF] Successfully validated the token. +2021-08-21 09:53:56.955 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:53:56.955 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:53:56.955 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 25.2603ms +2021-08-21 09:53:57.230 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:53:57.231 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:53:57.231 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4955ms +2021-08-21 09:53:57.234 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:53:57.234 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:53:57.237 +08:00 [INF] Successfully validated the token. +2021-08-21 09:53:57.238 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:53:57.242 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:53:57.242 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:53:57.245 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:53:57.245 +08:00 [INF] Authorization was successful. +2021-08-21 09:53:57.246 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:53:57.246 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:53:57.280 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:53:57.284 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 37.89ms +2021-08-21 09:53:57.284 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:53:57.289 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:53:57.314 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:53:57.314 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:53:57.314 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 80.9861ms +2021-08-21 09:54:01.044 +08:00 [DBG] 627 recurring job(s) processed by scheduler. +2021-08-21 09:54:05.921 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 09:54:06.463 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:54:06.464 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:54:06.464 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6626ms +2021-08-21 09:54:06.467 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:54:06.467 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:54:06.469 +08:00 [INF] Successfully validated the token. +2021-08-21 09:54:06.492 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:54:06.492 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:54:06.492 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 25.2449ms +2021-08-21 09:54:07.238 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:54:07.239 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:54:07.239 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4980ms +2021-08-21 09:54:07.241 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:54:07.241 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:54:07.244 +08:00 [INF] Successfully validated the token. +2021-08-21 09:54:07.245 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:54:07.249 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:54:07.249 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:54:07.252 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:54:07.252 +08:00 [INF] Authorization was successful. +2021-08-21 09:54:07.253 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:54:07.253 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:54:07.287 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:54:07.290 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 37.2021ms +2021-08-21 09:54:07.291 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:54:07.294 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:54:07.320 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:54:07.320 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:54:07.321 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 79.8751ms +2021-08-21 09:54:14.650 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:54:14.651 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:54:14.651 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6513ms +2021-08-21 09:54:14.654 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:54:14.654 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:54:14.657 +08:00 [INF] Successfully validated the token. +2021-08-21 09:54:14.679 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:54:14.679 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:54:14.679 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 25.1262ms +2021-08-21 09:54:15.237 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:54:15.238 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:54:15.238 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4757ms +2021-08-21 09:54:15.240 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:54:15.240 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:54:15.242 +08:00 [INF] Successfully validated the token. +2021-08-21 09:54:15.243 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:54:15.246 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:54:15.247 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:54:15.250 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:54:15.250 +08:00 [INF] Authorization was successful. +2021-08-21 09:54:15.252 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:54:15.252 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:54:15.289 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:54:15.293 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 40.9733ms +2021-08-21 09:54:15.293 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:54:15.297 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:54:15.322 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:54:15.322 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:54:15.322 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 82.8176ms +2021-08-21 09:54:20.488 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:54:20.488 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:54:20.488 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5495ms +2021-08-21 09:54:20.490 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:54:20.490 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:54:20.493 +08:00 [INF] Successfully validated the token. +2021-08-21 09:54:20.527 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:54:20.527 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:54:20.528 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 37.4761ms +2021-08-21 09:54:25.708 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:54:25.709 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:54:25.709 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5123ms +2021-08-21 09:54:25.711 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:54:25.711 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:54:25.714 +08:00 [INF] Successfully validated the token. +2021-08-21 09:54:25.738 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:54:25.738 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:54:25.738 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 27.4209ms +2021-08-21 09:54:30.871 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:54:30.872 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:54:30.872 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5588ms +2021-08-21 09:54:30.874 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:54:30.874 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:54:30.877 +08:00 [INF] Successfully validated the token. +2021-08-21 09:54:30.911 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:54:30.911 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:54:30.912 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 38.0871ms +2021-08-21 09:54:31.242 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:54:31.243 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:54:31.243 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.6808ms +2021-08-21 09:54:31.247 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:54:31.247 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:54:31.250 +08:00 [INF] Successfully validated the token. +2021-08-21 09:54:31.251 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:54:31.258 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:54:31.258 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:54:31.262 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:54:31.262 +08:00 [INF] Authorization was successful. +2021-08-21 09:54:31.264 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:54:31.264 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:54:31.300 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:54:31.304 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 39.9647ms +2021-08-21 09:54:31.304 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:54:31.308 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:54:31.336 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:54:31.336 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:54:31.336 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 89.9111ms +2021-08-21 09:54:36.035 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 09:54:36.721 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:54:36.721 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:54:36.721 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6653ms +2021-08-21 09:54:36.723 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:54:36.724 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:54:36.726 +08:00 [INF] Successfully validated the token. +2021-08-21 09:54:36.751 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:54:36.751 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:54:36.752 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 28.5015ms +2021-08-21 09:54:37.231 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:54:37.231 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:54:37.231 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4533ms +2021-08-21 09:54:37.233 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:54:37.233 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:54:37.235 +08:00 [INF] Successfully validated the token. +2021-08-21 09:54:37.236 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:54:37.240 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:54:37.240 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:54:37.243 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:54:37.243 +08:00 [INF] Authorization was successful. +2021-08-21 09:54:37.244 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:54:37.244 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:54:37.278 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:54:37.282 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 38.2822ms +2021-08-21 09:54:37.282 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:54:37.286 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:54:37.314 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:54:37.314 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:54:37.314 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 81.5931ms +2021-08-21 09:54:43.562 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:54:43.562 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:54:43.563 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4842ms +2021-08-21 09:54:43.564 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:54:43.565 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:54:43.567 +08:00 [INF] Successfully validated the token. +2021-08-21 09:54:43.591 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:54:43.591 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:54:43.591 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 27.1213ms +2021-08-21 09:54:44.245 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:54:44.245 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:54:44.246 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4858ms +2021-08-21 09:54:44.247 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:54:44.248 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:54:44.251 +08:00 [INF] Successfully validated the token. +2021-08-21 09:54:44.251 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:54:44.255 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:54:44.256 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:54:44.259 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:54:44.259 +08:00 [INF] Authorization was successful. +2021-08-21 09:54:44.260 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:54:44.260 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:54:44.294 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:54:44.298 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 37.9229ms +2021-08-21 09:54:44.298 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:54:44.302 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:54:44.329 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:54:44.329 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:54:44.330 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 82.2729ms +2021-08-21 09:54:54.826 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:54:54.827 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:54:54.827 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4957ms +2021-08-21 09:54:54.829 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:54:54.829 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:54:54.831 +08:00 [INF] Successfully validated the token. +2021-08-21 09:54:54.866 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:54:54.866 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:54:54.866 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 37.2864ms +2021-08-21 09:54:55.222 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:54:55.222 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:54:55.222 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.5813ms +2021-08-21 09:54:55.224 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:54:55.225 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:54:55.227 +08:00 [INF] Successfully validated the token. +2021-08-21 09:54:55.228 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:54:55.232 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:54:55.232 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:54:55.235 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:54:55.235 +08:00 [INF] Authorization was successful. +2021-08-21 09:54:55.236 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:54:55.237 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:54:55.272 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:54:55.276 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 39.4291ms +2021-08-21 09:54:55.276 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:54:55.281 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:54:55.308 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:54:55.308 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:54:55.308 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 84.0147ms +2021-08-21 09:55:06.087 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 09:55:12.051 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:55:12.051 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:55:12.052 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5404ms +2021-08-21 09:55:12.054 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:55:12.054 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:55:12.057 +08:00 [INF] Successfully validated the token. +2021-08-21 09:55:12.081 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:55:12.081 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:55:12.082 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 27.6115ms +2021-08-21 09:55:12.231 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:55:12.231 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:55:12.231 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4652ms +2021-08-21 09:55:12.233 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:55:12.233 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:55:12.236 +08:00 [INF] Successfully validated the token. +2021-08-21 09:55:12.237 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:55:12.241 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:55:12.241 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:55:12.244 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:55:12.244 +08:00 [INF] Authorization was successful. +2021-08-21 09:55:12.245 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:55:12.245 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:55:12.283 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:55:12.288 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 42.1322ms +2021-08-21 09:55:12.288 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:55:12.292 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:55:12.320 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:55:12.320 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:55:12.320 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 87.6646ms +2021-08-21 09:55:33.973 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:55:33.974 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:55:33.974 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6072ms +2021-08-21 09:55:33.976 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:55:33.976 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:55:33.978 +08:00 [INF] Successfully validated the token. +2021-08-21 09:55:34.004 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:55:34.004 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:55:34.005 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 29.0491ms +2021-08-21 09:55:34.230 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:55:34.231 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:55:34.231 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.5850ms +2021-08-21 09:55:34.233 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:55:34.233 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:55:34.236 +08:00 [INF] Successfully validated the token. +2021-08-21 09:55:34.236 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:55:34.240 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:55:34.240 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:55:34.243 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:55:34.243 +08:00 [INF] Authorization was successful. +2021-08-21 09:55:34.244 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:55:34.244 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:55:34.281 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:55:34.285 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 40.6311ms +2021-08-21 09:55:34.285 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:55:34.288 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:55:34.314 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:55:34.314 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:55:34.314 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 81.5415ms +2021-08-21 09:55:35.667 +08:00 [INF] 1 servers were removed due to timeout +2021-08-21 09:55:35.739 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 09:55:36.120 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 09:55:37.343 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 09:55:51.650 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:55:51.650 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:55:51.650 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5380ms +2021-08-21 09:55:51.652 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:55:51.653 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:55:51.656 +08:00 [INF] Successfully validated the token. +2021-08-21 09:55:51.679 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:55:51.679 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:55:51.680 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 27.1817ms +2021-08-21 09:55:52.235 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:55:52.236 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:55:52.236 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.8769ms +2021-08-21 09:55:52.241 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:55:52.241 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:55:52.245 +08:00 [INF] Successfully validated the token. +2021-08-21 09:55:52.246 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:55:52.250 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:55:52.250 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:55:52.252 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:55:52.252 +08:00 [INF] Authorization was successful. +2021-08-21 09:55:52.254 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:55:52.254 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:55:52.289 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:55:52.294 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 40.514ms +2021-08-21 09:55:52.294 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:55:52.300 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:55:52.332 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:55:52.332 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:55:52.332 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 91.3168ms +2021-08-21 09:55:56.759 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 09:56:01.057 +08:00 [DBG] 234 recurring job(s) processed by scheduler. +2021-08-21 09:56:06.144 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 09:56:36.167 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 09:57:06.183 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 09:57:18.452 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:57:18.452 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:57:18.452 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5204ms +2021-08-21 09:57:18.455 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:57:18.455 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:57:18.458 +08:00 [INF] Successfully validated the token. +2021-08-21 09:57:18.484 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:57:18.484 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:57:18.484 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 29.4274ms +2021-08-21 09:57:19.226 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:57:19.226 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:57:19.226 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4404ms +2021-08-21 09:57:19.228 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:57:19.229 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:57:19.232 +08:00 [INF] Successfully validated the token. +2021-08-21 09:57:19.232 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:57:19.236 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:57:19.236 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:57:19.238 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:57:19.239 +08:00 [INF] Authorization was successful. +2021-08-21 09:57:19.240 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:57:19.240 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:57:19.272 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:57:19.275 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 35.7126ms +2021-08-21 09:57:19.276 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:57:19.279 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:57:19.303 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:57:19.303 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:57:19.304 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 75.0812ms +2021-08-21 09:57:28.695 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:57:28.696 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:57:28.696 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5787ms +2021-08-21 09:57:28.698 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:57:28.698 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:57:28.701 +08:00 [INF] Successfully validated the token. +2021-08-21 09:57:28.736 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:57:28.736 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:57:28.736 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 38.0183ms +2021-08-21 09:57:36.211 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 09:57:39.396 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:57:39.396 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:57:39.396 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5364ms +2021-08-21 09:57:39.398 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:57:39.399 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:57:39.401 +08:00 [INF] Successfully validated the token. +2021-08-21 09:57:39.426 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:57:39.426 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:57:39.426 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 27.8650ms +2021-08-21 09:57:39.502 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:57:39.503 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:57:39.503 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.5022ms +2021-08-21 09:57:39.506 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:57:39.506 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:57:39.509 +08:00 [INF] Successfully validated the token. +2021-08-21 09:57:39.510 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:57:39.514 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:57:39.514 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:57:39.517 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:57:39.517 +08:00 [INF] Authorization was successful. +2021-08-21 09:57:39.518 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:57:39.518 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:57:39.555 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:57:39.560 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 41.5929ms +2021-08-21 09:57:39.560 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:57:39.564 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:57:39.592 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:57:39.592 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:57:39.592 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 86.0652ms +2021-08-21 09:57:50.657 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 09:58:01.058 +08:00 [DBG] 622 recurring job(s) processed by scheduler. +2021-08-21 09:58:06.235 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 09:58:14.377 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:58:14.377 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:58:14.378 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4558ms +2021-08-21 09:58:14.380 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:58:14.380 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:58:14.382 +08:00 [INF] Successfully validated the token. +2021-08-21 09:58:14.406 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:58:14.406 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:58:14.406 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.5901ms +2021-08-21 09:58:14.478 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:58:14.478 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:58:14.478 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.8594ms +2021-08-21 09:58:14.481 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:58:14.482 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:58:14.485 +08:00 [INF] Successfully validated the token. +2021-08-21 09:58:14.486 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:58:14.490 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:58:14.490 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:58:14.495 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:58:14.495 +08:00 [INF] Authorization was successful. +2021-08-21 09:58:14.497 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:58:14.497 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:58:14.530 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:58:14.534 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 37.0923ms +2021-08-21 09:58:14.534 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:58:14.538 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:58:14.566 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:58:14.566 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:58:14.567 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 85.3671ms +2021-08-21 09:58:20.660 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 09:58:20.660 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:58:20.661 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.9117ms +2021-08-21 09:58:20.663 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 09:58:20.663 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:58:20.665 +08:00 [INF] Successfully validated the token. +2021-08-21 09:58:20.698 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:58:20.698 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:58:20.698 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 35.2881ms +2021-08-21 09:58:21.244 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 09:58:21.244 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:58:21.244 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4559ms +2021-08-21 09:58:21.246 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 09:58:21.246 +08:00 [INF] CORS policy execution successful. +2021-08-21 09:58:21.248 +08:00 [INF] Successfully validated the token. +2021-08-21 09:58:21.249 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:58:21.253 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 09:58:21.253 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:58:21.255 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 09:58:21.255 +08:00 [INF] Authorization was successful. +2021-08-21 09:58:21.256 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:58:21.256 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 09:58:21.286 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 09:58:21.290 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 33.459ms +2021-08-21 09:58:21.290 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 09:58:21.295 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:58:21.319 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:58:21.319 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 09:58:21.319 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 73.5046ms +2021-08-21 09:58:36.267 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 09:59:06.307 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 09:59:36.324 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 09:59:46.794 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 10:00:01.053 +08:00 [DBG] 918 recurring job(s) processed by scheduler. +2021-08-21 10:00:06.344 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:00:35.756 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 10:00:36.362 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:01:06.389 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:01:36.404 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:02:01.047 +08:00 [DBG] 931 recurring job(s) processed by scheduler. +2021-08-21 10:02:06.430 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:02:36.456 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:03:06.466 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:03:36.493 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:04:01.057 +08:00 [DBG] 932 recurring job(s) processed by scheduler. +2021-08-21 10:04:06.503 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:04:36.520 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:05:06.532 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:05:35.782 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 10:05:36.571 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:06:01.357 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 10:06:06.582 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:06:36.600 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:07:06.621 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:07:36.650 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:08:06.661 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:08:17.034 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 10:08:32.669 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 10:08:36.677 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:08:48.345 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 10:09:01.053 +08:00 [DBG] 806 recurring job(s) processed by scheduler. +2021-08-21 10:09:06.707 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:09:36.741 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:10:06.773 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:10:32.548 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 10:10:35.776 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 10:10:36.784 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:10:49.226 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 10:11:01.041 +08:00 [DBG] 720 recurring job(s) processed by scheduler. +2021-08-21 10:11:06.820 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:11:36.835 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:12:06.845 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:12:31.857 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 10:12:36.858 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:12:47.515 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 10:13:01.049 +08:00 [DBG] 870 recurring job(s) processed by scheduler. +2021-08-21 10:13:06.886 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:13:36.914 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:14:06.939 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:14:36.945 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:14:47.304 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 10:15:01.043 +08:00 [DBG] 870 recurring job(s) processed by scheduler. +2021-08-21 10:15:06.960 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:15:35.778 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 10:15:36.979 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:16:07.012 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:16:37.047 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:17:01.044 +08:00 [DBG] 953 recurring job(s) processed by scheduler. +2021-08-21 10:17:07.067 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:17:37.097 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:18:07.128 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:18:37.162 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:19:01.046 +08:00 [DBG] 866 recurring job(s) processed by scheduler. +2021-08-21 10:19:07.193 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:19:37.211 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:20:07.232 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:20:35.791 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 10:20:37.256 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:21:01.326 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 10:21:07.290 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:21:37.306 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:22:07.328 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:22:37.351 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:23:01.649 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 10:23:07.359 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:23:37.377 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:24:07.385 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:24:37.399 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:25:07.409 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:25:32.666 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 10:25:35.806 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 10:25:37.432 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:25:48.419 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 10:26:01.055 +08:00 [DBG] 803 recurring job(s) processed by scheduler. +2021-08-21 10:26:07.459 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:26:37.485 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:27:07.516 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:27:31.792 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 10:27:37.542 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:27:47.477 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 10:28:01.049 +08:00 [DBG] 860 recurring job(s) processed by scheduler. +2021-08-21 10:28:07.588 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:28:37.608 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:29:07.641 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:29:37.660 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:29:47.050 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 10:30:01.049 +08:00 [DBG] 881 recurring job(s) processed by scheduler. +2021-08-21 10:30:07.694 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:30:35.807 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 10:30:37.725 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:31:07.753 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:31:37.770 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:31:46.948 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 10:32:01.050 +08:00 [DBG] 903 recurring job(s) processed by scheduler. +2021-08-21 10:32:07.812 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:32:37.837 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:33:07.845 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:33:37.868 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:34:01.056 +08:00 [DBG] 947 recurring job(s) processed by scheduler. +2021-08-21 10:34:07.891 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:34:37.912 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:35:07.949 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:35:35.808 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 10:35:37.983 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:36:01.052 +08:00 [DBG] 948 recurring job(s) processed by scheduler. +2021-08-21 10:36:08.008 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:36:38.033 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:37:08.059 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:37:38.093 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:38:01.369 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 10:38:08.131 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:38:38.163 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:39:08.205 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:39:38.230 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:40:08.255 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:40:17.397 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 10:40:33.227 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 10:40:35.822 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 10:40:38.259 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:40:48.964 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 10:41:01.054 +08:00 [DBG] 763 recurring job(s) processed by scheduler. +2021-08-21 10:41:08.263 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:41:38.268 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:42:08.276 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:42:31.554 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 10:42:38.290 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:42:47.062 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 10:43:01.059 +08:00 [DBG] 894 recurring job(s) processed by scheduler. +2021-08-21 10:43:08.302 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:43:38.308 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:44:08.326 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:44:31.881 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 10:44:38.333 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:44:47.542 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 10:45:01.052 +08:00 [DBG] 854 recurring job(s) processed by scheduler. +2021-08-21 10:45:08.362 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:45:35.813 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 10:45:38.382 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:46:08.409 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:46:38.423 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:46:46.813 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 10:47:01.044 +08:00 [DBG] 911 recurring job(s) processed by scheduler. +2021-08-21 10:47:08.452 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:47:38.468 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:48:08.488 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:48:38.516 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:49:01.052 +08:00 [DBG] 958 recurring job(s) processed by scheduler. +2021-08-21 10:49:08.532 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:49:38.545 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:50:08.557 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:50:35.726 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-08-21 10:50:35.728 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-08-21 10:50:35.735 +08:00 [DBG] removed records count=0 +2021-08-21 10:50:35.735 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-08-21 10:50:35.736 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-08-21 10:50:35.742 +08:00 [DBG] removed records count=0 +2021-08-21 10:50:35.742 +08:00 [DBG] Removing outdated records from table 'List'... +2021-08-21 10:50:35.744 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-08-21 10:50:35.749 +08:00 [DBG] removed records count=0 +2021-08-21 10:50:35.749 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-08-21 10:50:35.750 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-08-21 10:50:35.756 +08:00 [DBG] removed records count=0 +2021-08-21 10:50:35.756 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-08-21 10:50:35.757 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-08-21 10:50:35.763 +08:00 [DBG] removed records count=0 +2021-08-21 10:50:35.834 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 10:50:38.583 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:51:01.059 +08:00 [DBG] 948 recurring job(s) processed by scheduler. +2021-08-21 10:51:08.602 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:51:38.640 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:52:08.674 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:52:38.711 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:53:01.259 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 10:53:08.749 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:53:38.774 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:54:08.806 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:54:38.833 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:55:01.514 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 10:55:08.858 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:55:35.848 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 10:55:38.901 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:56:08.933 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:56:38.967 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:57:08.998 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:57:32.379 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 10:57:39.013 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:57:48.047 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 10:58:01.044 +08:00 [DBG] 821 recurring job(s) processed by scheduler. +2021-08-21 10:58:09.042 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:58:39.058 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:59:09.083 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:59:31.832 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 10:59:39.099 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 10:59:47.376 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 11:00:01.050 +08:00 [DBG] 877 recurring job(s) processed by scheduler. +2021-08-21 11:00:09.112 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:00:35.833 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 11:00:39.130 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:01:09.141 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:01:39.162 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:01:46.853 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 11:02:01.043 +08:00 [DBG] 888 recurring job(s) processed by scheduler. +2021-08-21 11:02:09.174 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:02:39.211 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:03:09.230 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:03:39.242 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:03:46.975 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 11:04:01.045 +08:00 [DBG] 892 recurring job(s) processed by scheduler. +2021-08-21 11:04:09.252 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:04:39.276 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:05:09.300 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:05:35.837 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 11:05:39.329 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:06:01.046 +08:00 [DBG] 941 recurring job(s) processed by scheduler. +2021-08-21 11:06:09.353 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:06:39.389 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:07:09.419 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:07:39.447 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:08:01.049 +08:00 [DBG] 935 recurring job(s) processed by scheduler. +2021-08-21 11:08:09.473 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:08:39.503 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:09:09.527 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:09:39.558 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:10:01.321 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 11:10:09.595 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:10:35.842 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 11:10:39.632 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:11:09.669 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:11:39.693 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:12:09.712 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:12:17.363 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 11:12:33.103 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 11:12:39.728 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:12:48.977 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 11:13:01.044 +08:00 [DBG] 759 recurring job(s) processed by scheduler. +2021-08-21 11:13:09.754 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:13:39.770 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:14:09.790 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:14:31.768 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 11:14:39.805 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:14:47.618 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 11:15:01.053 +08:00 [DBG] 841 recurring job(s) processed by scheduler. +2021-08-21 11:15:09.825 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:15:35.855 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 11:15:39.856 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:16:09.875 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:16:31.947 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 11:16:39.895 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:16:47.759 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 11:17:01.047 +08:00 [DBG] 841 recurring job(s) processed by scheduler. +2021-08-21 11:17:09.919 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:17:39.938 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:18:09.968 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:18:39.989 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:18:47.007 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 11:19:01.052 +08:00 [DBG] 883 recurring job(s) processed by scheduler. +2021-08-21 11:19:10.008 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:19:40.021 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:20:10.039 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:20:35.855 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 11:20:40.062 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:21:01.053 +08:00 [DBG] 930 recurring job(s) processed by scheduler. +2021-08-21 11:21:10.077 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:21:40.093 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:22:10.107 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:22:40.136 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:23:01.053 +08:00 [DBG] 936 recurring job(s) processed by scheduler. +2021-08-21 11:23:10.162 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:23:40.176 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:24:10.189 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:24:40.223 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:25:01.318 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 11:25:10.255 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:25:35.856 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 11:25:40.281 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:26:10.303 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:26:40.342 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:27:01.546 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 11:27:10.361 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:27:40.391 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:28:10.411 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:28:40.435 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:29:10.455 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:29:32.169 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 11:29:40.471 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:29:47.724 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 11:30:01.039 +08:00 [DBG] 856 recurring job(s) processed by scheduler. +2021-08-21 11:30:10.499 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:30:35.872 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 11:30:40.533 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:31:10.553 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:31:31.532 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 11:31:40.575 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:31:47.023 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 11:32:01.062 +08:00 [DBG] 899 recurring job(s) processed by scheduler. +2021-08-21 11:32:10.590 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:32:40.595 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:33:10.601 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:33:40.620 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:33:48.434 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 11:34:01.055 +08:00 [DBG] 800 recurring job(s) processed by scheduler. +2021-08-21 11:34:10.648 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:34:40.650 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:35:10.670 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:35:35.862 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 11:35:40.691 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:35:47.076 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 11:36:01.046 +08:00 [DBG] 885 recurring job(s) processed by scheduler. +2021-08-21 11:36:10.719 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:36:40.730 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:37:10.746 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:37:40.752 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:38:01.040 +08:00 [DBG] 944 recurring job(s) processed by scheduler. +2021-08-21 11:38:10.786 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:38:40.810 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:39:10.839 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:39:40.848 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:40:01.057 +08:00 [DBG] 960 recurring job(s) processed by scheduler. +2021-08-21 11:40:10.881 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:40:35.874 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 11:40:40.905 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:41:10.923 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:41:40.939 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:42:01.359 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 11:42:10.949 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:42:40.972 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:43:10.990 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:43:41.004 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:44:11.016 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:44:17.131 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 11:44:32.987 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 11:44:41.029 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:44:48.751 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 11:45:01.045 +08:00 [DBG] 784 recurring job(s) processed by scheduler. +2021-08-21 11:45:11.048 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:45:35.896 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 11:45:41.080 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:46:11.103 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:46:31.797 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 11:46:41.116 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:46:47.315 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 11:47:01.054 +08:00 [DBG] 894 recurring job(s) processed by scheduler. +2021-08-21 11:47:11.146 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:47:41.167 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:48:11.196 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:48:31.659 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 11:48:41.221 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:48:47.485 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 11:49:01.045 +08:00 [DBG] 864 recurring job(s) processed by scheduler. +2021-08-21 11:49:11.249 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:49:41.258 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:50:11.268 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:50:35.608 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-08-21 11:50:35.609 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-08-21 11:50:35.617 +08:00 [DBG] removed records count=0 +2021-08-21 11:50:35.617 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-08-21 11:50:35.618 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-08-21 11:50:35.625 +08:00 [DBG] removed records count=0 +2021-08-21 11:50:35.625 +08:00 [DBG] Removing outdated records from table 'List'... +2021-08-21 11:50:35.626 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-08-21 11:50:35.632 +08:00 [DBG] removed records count=0 +2021-08-21 11:50:35.632 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-08-21 11:50:35.634 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-08-21 11:50:35.641 +08:00 [DBG] removed records count=0 +2021-08-21 11:50:35.641 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-08-21 11:50:35.642 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-08-21 11:50:35.649 +08:00 [DBG] removed records count=0 +2021-08-21 11:50:35.906 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 11:50:41.289 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:50:46.896 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 11:51:01.049 +08:00 [DBG] 896 recurring job(s) processed by scheduler. +2021-08-21 11:51:11.303 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:51:41.323 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:52:11.341 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:52:41.354 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:53:01.044 +08:00 [DBG] 953 recurring job(s) processed by scheduler. +2021-08-21 11:53:11.381 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:53:41.401 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:54:11.418 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:54:41.428 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:55:01.058 +08:00 [DBG] 931 recurring job(s) processed by scheduler. +2021-08-21 11:55:11.456 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:55:35.894 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 11:55:41.482 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:56:11.517 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:56:41.526 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:57:01.332 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 11:57:11.537 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:57:41.561 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:58:11.578 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:58:41.595 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:59:01.660 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 11:59:11.631 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 11:59:41.656 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:00:11.682 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:00:35.901 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 12:00:41.702 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:01:11.721 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:01:32.658 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 12:01:41.739 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:01:48.346 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 12:02:01.044 +08:00 [DBG] 798 recurring job(s) processed by scheduler. +2021-08-21 12:02:11.757 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:02:41.779 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:03:11.809 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:03:31.998 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 12:03:41.831 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:03:47.703 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 12:04:01.051 +08:00 [DBG] 852 recurring job(s) processed by scheduler. +2021-08-21 12:04:11.850 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:04:41.864 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:05:11.877 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:05:35.917 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 12:05:41.895 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:05:46.826 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 12:06:01.050 +08:00 [DBG] 910 recurring job(s) processed by scheduler. +2021-08-21 12:06:11.915 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:06:41.926 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:07:11.960 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:07:41.975 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:07:47.016 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 12:08:01.057 +08:00 [DBG] 894 recurring job(s) processed by scheduler. +2021-08-21 12:08:11.991 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:08:41.999 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:09:12.023 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:09:42.046 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:10:01.051 +08:00 [DBG] 939 recurring job(s) processed by scheduler. +2021-08-21 12:10:12.074 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:10:35.896 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 12:10:42.094 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:11:12.128 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:11:42.158 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:12:01.043 +08:00 [DBG] 940 recurring job(s) processed by scheduler. +2021-08-21 12:12:12.189 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:12:42.206 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:13:12.236 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:13:42.265 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:14:01.351 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 12:14:12.308 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:14:42.330 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:15:12.346 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:15:35.907 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 12:15:42.387 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:16:12.398 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:16:17.124 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 12:16:32.933 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 12:16:42.407 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:16:48.808 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 12:17:01.042 +08:00 [DBG] 768 recurring job(s) processed by scheduler. +2021-08-21 12:17:12.435 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:17:42.458 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:18:12.487 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:18:31.750 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 12:18:42.499 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:18:47.305 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 12:19:01.051 +08:00 [DBG] 878 recurring job(s) processed by scheduler. +2021-08-21 12:19:12.526 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:19:42.544 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:20:12.567 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:20:31.927 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 12:20:35.912 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 12:20:42.586 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:20:47.677 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 12:21:01.054 +08:00 [DBG] 846 recurring job(s) processed by scheduler. +2021-08-21 12:21:12.607 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:21:42.617 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:22:12.631 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:22:42.637 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:22:46.938 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 12:23:01.050 +08:00 [DBG] 901 recurring job(s) processed by scheduler. +2021-08-21 12:23:12.650 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:23:42.665 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:24:12.685 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:24:42.739 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:25:01.041 +08:00 [DBG] 941 recurring job(s) processed by scheduler. +2021-08-21 12:25:12.759 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:25:35.916 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 12:25:42.781 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:26:12.800 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:26:42.825 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:27:01.048 +08:00 [DBG] 934 recurring job(s) processed by scheduler. +2021-08-21 12:27:12.857 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:27:42.880 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:28:12.905 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:28:42.923 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:29:01.328 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 12:29:12.945 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:29:42.954 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:30:12.966 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:30:35.935 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 12:30:42.989 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:31:01.563 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 12:31:13.018 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:31:43.035 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:32:13.045 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:32:43.060 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:33:13.095 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:33:32.492 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 12:33:43.114 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:33:48.359 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 12:34:01.050 +08:00 [DBG] 796 recurring job(s) processed by scheduler. +2021-08-21 12:34:13.138 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:34:43.170 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:35:13.179 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:35:31.866 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 12:35:35.969 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 12:35:43.189 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:35:47.551 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 12:36:01.052 +08:00 [DBG] 863 recurring job(s) processed by scheduler. +2021-08-21 12:36:13.207 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:36:43.244 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:37:13.266 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:37:43.274 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:37:46.987 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 12:38:01.053 +08:00 [DBG] 883 recurring job(s) processed by scheduler. +2021-08-21 12:38:13.302 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:38:43.314 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:39:13.325 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:39:43.330 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:39:48.828 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 12:40:01.066 +08:00 [DBG] 617 recurring job(s) processed by scheduler. +2021-08-21 12:40:13.342 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:40:35.969 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 12:40:43.361 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:41:13.373 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:41:43.388 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:41:59.931 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 12:42:01.037 +08:00 [DBG] 79 recurring job(s) processed by scheduler. +2021-08-21 12:42:13.407 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:42:43.426 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:43:13.440 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:43:43.451 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:44:01.048 +08:00 [DBG] 985 recurring job(s) processed by scheduler. +2021-08-21 12:44:06.450 +08:00 [DBG] Execution Worker is in the Faulted state now due to an exception, execution will be retried no more than in 00:00:01 +MySqlConnector.MySqlException (0x80004005): Deadlock found when trying to get lock; try restarting transaction + ---> MySqlConnector.MySqlException (0x80004005): Deadlock found when trying to get lock; try restarting transaction + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 49 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 131 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 436 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 264 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 100 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-08-21 12:44:06.450 +08:00 [DBG] Execution loop Worker:35e7e9a6 caught an exception and will be retried in 00:00:01 +MySqlConnector.MySqlException (0x80004005): Deadlock found when trying to get lock; try restarting transaction + ---> MySqlConnector.MySqlException (0x80004005): Deadlock found when trying to get lock; try restarting transaction + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 49 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 131 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 436 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 264 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 100 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-08-21 12:44:06.450 +08:00 [DBG] Execution loop Worker:990b0d87 caught an exception and will be retried in 00:00:04 +MySqlConnector.MySqlException (0x80004005): Deadlock found when trying to get lock; try restarting transaction + ---> MySqlConnector.MySqlException (0x80004005): Deadlock found when trying to get lock; try restarting transaction + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 49 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 131 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 436 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 264 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 100 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-08-21 12:44:06.451 +08:00 [DBG] Execution loop Worker:35e7e9a6 will be retried in 00:00:01... +2021-08-21 12:44:06.451 +08:00 [DBG] Execution loop Worker:990b0d87 will be retried in 00:00:04... +2021-08-21 12:44:13.456 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:44:43.464 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:45:13.477 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:45:35.937 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 12:45:43.481 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:46:01.218 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 12:46:06.429 +08:00 [INF] Execution Worker recovered from the Faulted state after 00:01:59.9907381 and is in the Running state now +2021-08-21 12:46:13.490 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:46:43.495 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:47:13.518 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:47:43.544 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:48:13.552 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:48:15.822 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 12:48:31.566 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 12:48:43.562 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:48:46.667 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 12:49:01.049 +08:00 [DBG] 977 recurring job(s) processed by scheduler. +2021-08-21 12:49:13.593 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:49:43.622 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:50:13.639 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:50:30.403 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 12:50:35.498 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-08-21 12:50:35.500 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-08-21 12:50:35.506 +08:00 [DBG] removed records count=0 +2021-08-21 12:50:35.506 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-08-21 12:50:35.507 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-08-21 12:50:35.514 +08:00 [DBG] removed records count=0 +2021-08-21 12:50:35.514 +08:00 [DBG] Removing outdated records from table 'List'... +2021-08-21 12:50:35.515 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-08-21 12:50:35.521 +08:00 [DBG] removed records count=0 +2021-08-21 12:50:35.521 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-08-21 12:50:35.522 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-08-21 12:50:35.529 +08:00 [DBG] removed records count=0 +2021-08-21 12:50:35.529 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-08-21 12:50:35.530 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-08-21 12:50:35.536 +08:00 [DBG] removed records count=0 +2021-08-21 12:50:35.955 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 12:50:43.668 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:50:44.599 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 12:50:58.546 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 12:51:01.039 +08:00 [DBG] 182 recurring job(s) processed by scheduler. +2021-08-21 12:51:13.696 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:51:43.725 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:52:13.737 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:52:30.922 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 12:52:43.776 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:52:45.431 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 12:53:00.735 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 12:53:01.047 +08:00 [DBG] 18 recurring job(s) processed by scheduler. +2021-08-21 12:53:13.817 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:53:43.847 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:54:13.882 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:54:43.900 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:54:46.199 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 12:55:00.713 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 12:55:01.043 +08:00 [DBG] 20 recurring job(s) processed by scheduler. +2021-08-21 12:55:13.941 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:55:35.969 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 12:55:43.980 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:56:14.020 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:56:44.040 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:57:01.055 +08:00 [DBG] 941 recurring job(s) processed by scheduler. +2021-08-21 12:57:14.063 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:57:44.077 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:58:14.110 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:58:44.142 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:59:00.802 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 12:59:01.040 +08:00 [DBG] 14 recurring job(s) processed by scheduler. +2021-08-21 12:59:14.154 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 12:59:44.177 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:00:14.191 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:00:35.969 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 13:00:44.206 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:01:01.327 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 13:01:14.232 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:01:44.267 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:02:14.289 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:02:44.302 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:03:01.670 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 13:03:14.318 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:03:44.330 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:04:14.344 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:04:44.352 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:05:14.362 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:05:34.286 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 13:05:35.992 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 13:05:44.373 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:05:50.876 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 13:06:01.055 +08:00 [DBG] 660 recurring job(s) processed by scheduler. +2021-08-21 13:06:14.387 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:06:44.398 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:07:14.419 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:07:31.627 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 13:07:44.440 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:07:47.125 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 13:08:01.047 +08:00 [DBG] 897 recurring job(s) processed by scheduler. +2021-08-21 13:08:14.468 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:08:44.501 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:09:14.525 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:09:44.540 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:09:46.305 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 13:10:01.055 +08:00 [DBG] 970 recurring job(s) processed by scheduler. +2021-08-21 13:10:14.559 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:10:36.009 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 13:10:44.588 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:11:14.604 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:11:44.631 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:11:46.567 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 13:12:01.051 +08:00 [DBG] 925 recurring job(s) processed by scheduler. +2021-08-21 13:12:14.642 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:12:44.668 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:13:14.700 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:13:44.725 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:14:01.048 +08:00 [DBG] 959 recurring job(s) processed by scheduler. +2021-08-21 13:14:14.739 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:14:44.756 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:15:14.776 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:15:36.011 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 13:15:44.785 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:16:01.056 +08:00 [DBG] 936 recurring job(s) processed by scheduler. +2021-08-21 13:16:14.816 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:16:44.848 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:17:14.881 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:17:44.906 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:18:01.353 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 13:18:14.919 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:18:44.952 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:19:14.974 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:19:44.992 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:20:15.000 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:20:17.250 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 13:20:33.053 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 13:20:36.015 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 13:20:45.012 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:20:48.906 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 13:21:01.042 +08:00 [DBG] 769 recurring job(s) processed by scheduler. +2021-08-21 13:21:15.033 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:21:45.053 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:22:15.081 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:22:31.747 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 13:22:45.088 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:22:47.395 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 13:23:01.053 +08:00 [DBG] 868 recurring job(s) processed by scheduler. +2021-08-21 13:23:15.114 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:23:45.132 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:24:15.143 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:24:31.716 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 13:24:45.153 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:24:47.376 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 13:25:01.049 +08:00 [DBG] 884 recurring job(s) processed by scheduler. +2021-08-21 13:25:15.173 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:25:36.040 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 13:25:45.186 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:26:15.198 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:26:45.204 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:26:46.824 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 13:27:01.053 +08:00 [DBG] 908 recurring job(s) processed by scheduler. +2021-08-21 13:27:09.850 +08:00 [DBG] Execution Worker is in the Faulted state now due to an exception, execution will be retried no more than in 00:00:01 +MySqlConnector.MySqlException (0x80004005): Deadlock found when trying to get lock; try restarting transaction + ---> MySqlConnector.MySqlException (0x80004005): Deadlock found when trying to get lock; try restarting transaction + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 49 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 131 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 436 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 264 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 100 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-08-21 13:27:09.850 +08:00 [DBG] Execution loop Worker:1d72583e caught an exception and will be retried in 00:00:01 +MySqlConnector.MySqlException (0x80004005): Deadlock found when trying to get lock; try restarting transaction + ---> MySqlConnector.MySqlException (0x80004005): Deadlock found when trying to get lock; try restarting transaction + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 49 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 131 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 436 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 264 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 100 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-08-21 13:27:09.851 +08:00 [DBG] Execution loop Worker:1d72583e will be retried in 00:00:01... +2021-08-21 13:27:09.856 +08:00 [DBG] Execution loop Worker:38ba566c caught an exception and will be retried in 00:00:04 +MySqlConnector.MySqlException (0x80004005): Deadlock found when trying to get lock; try restarting transaction + ---> MySqlConnector.MySqlException (0x80004005): Deadlock found when trying to get lock; try restarting transaction + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 49 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 131 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 436 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 264 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 100 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-08-21 13:27:09.856 +08:00 [DBG] Execution loop Worker:38ba566c will be retried in 00:00:04... +2021-08-21 13:27:09.856 +08:00 [DBG] Execution loop Worker:1368bc93 caught an exception and will be retried in 00:00:09 +MySqlConnector.MySqlException (0x80004005): Deadlock found when trying to get lock; try restarting transaction + ---> MySqlConnector.MySqlException (0x80004005): Deadlock found when trying to get lock; try restarting transaction + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 49 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 131 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 436 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 264 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 100 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-08-21 13:27:09.856 +08:00 [DBG] Execution loop Worker:1368bc93 will be retried in 00:00:09... +2021-08-21 13:27:15.216 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:27:45.223 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:28:15.243 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:28:45.260 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:28:49.038 +08:00 [INF] Execution Worker recovered from the Faulted state after 00:01:39.1889143 and is in the Running state now +2021-08-21 13:29:01.040 +08:00 [DBG] 945 recurring job(s) processed by scheduler. +2021-08-21 13:29:15.294 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:29:45.321 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:30:15.328 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:30:36.055 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 13:30:45.343 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:31:01.045 +08:00 [DBG] 933 recurring job(s) processed by scheduler. +2021-08-21 13:31:15.378 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:31:45.396 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:32:15.418 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:32:45.424 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:33:01.308 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 13:33:15.438 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:33:45.456 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:34:15.481 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:34:45.502 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:35:01.532 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 13:35:15.525 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:35:36.036 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 13:35:45.551 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:36:15.588 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:36:45.605 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:37:15.613 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:37:32.490 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 13:37:45.632 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:37:47.951 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 13:38:01.056 +08:00 [DBG] 826 recurring job(s) processed by scheduler. +2021-08-21 13:38:15.651 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:38:45.668 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:39:15.690 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:39:31.608 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 13:39:45.705 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:39:47.137 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 13:40:01.051 +08:00 [DBG] 893 recurring job(s) processed by scheduler. +2021-08-21 13:40:15.736 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:40:36.045 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 13:40:45.760 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:41:15.792 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:41:45.808 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:41:46.877 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 13:42:01.042 +08:00 [DBG] 895 recurring job(s) processed by scheduler. +2021-08-21 13:42:15.819 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:42:45.838 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:43:15.857 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:43:45.882 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:43:46.879 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 13:44:01.049 +08:00 [DBG] 893 recurring job(s) processed by scheduler. +2021-08-21 13:44:15.894 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:44:45.922 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:45:15.941 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:45:36.062 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 13:45:45.976 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:46:01.055 +08:00 [DBG] 944 recurring job(s) processed by scheduler. +2021-08-21 13:46:16.007 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:46:46.024 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:47:16.048 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:47:46.083 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:48:01.053 +08:00 [DBG] 954 recurring job(s) processed by scheduler. +2021-08-21 13:48:16.107 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:48:46.131 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:49:16.155 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:49:46.179 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:50:01.281 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 13:50:16.206 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:50:35.383 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-08-21 13:50:35.384 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-08-21 13:50:35.402 +08:00 [DBG] removed records count=0 +2021-08-21 13:50:35.402 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-08-21 13:50:35.404 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-08-21 13:50:35.409 +08:00 [DBG] removed records count=0 +2021-08-21 13:50:35.409 +08:00 [DBG] Removing outdated records from table 'List'... +2021-08-21 13:50:35.411 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-08-21 13:50:35.416 +08:00 [DBG] removed records count=0 +2021-08-21 13:50:35.416 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-08-21 13:50:35.418 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-08-21 13:50:35.423 +08:00 [DBG] removed records count=0 +2021-08-21 13:50:35.423 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-08-21 13:50:35.425 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-08-21 13:50:35.431 +08:00 [DBG] removed records count=0 +2021-08-21 13:50:36.060 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 13:50:46.233 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:51:16.245 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:51:46.261 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:52:16.277 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:52:17.333 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 13:52:33.054 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 13:52:46.292 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:52:48.846 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 13:53:01.052 +08:00 [DBG] 770 recurring job(s) processed by scheduler. +2021-08-21 13:53:16.300 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:53:46.321 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:54:16.339 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:54:31.759 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 13:54:46.359 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:54:47.336 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 13:55:01.044 +08:00 [DBG] 872 recurring job(s) processed by scheduler. +2021-08-21 13:55:16.366 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:55:36.061 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 13:55:46.378 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:56:16.408 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:56:31.708 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 13:56:46.430 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:56:47.135 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 13:57:01.052 +08:00 [DBG] 888 recurring job(s) processed by scheduler. +2021-08-21 13:57:16.456 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:57:46.466 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:58:16.502 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:58:46.528 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:58:46.757 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 13:59:01.044 +08:00 [DBG] 901 recurring job(s) processed by scheduler. +2021-08-21 13:59:16.547 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 13:59:46.578 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:00:16.614 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:00:36.086 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 14:00:46.634 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:01:01.054 +08:00 [DBG] 936 recurring job(s) processed by scheduler. +2021-08-21 14:01:16.672 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:01:46.706 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:02:16.730 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:02:46.739 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:03:01.045 +08:00 [DBG] 935 recurring job(s) processed by scheduler. +2021-08-21 14:03:16.772 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:03:46.793 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:04:16.801 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:04:46.823 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:05:01.311 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 14:05:16.859 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:05:36.091 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 14:05:46.871 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:06:16.881 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:06:46.904 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:07:01.547 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 14:07:16.914 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:07:46.923 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:08:16.931 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:08:46.950 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:09:16.962 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:09:32.548 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 14:09:46.973 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:09:48.313 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 14:10:01.046 +08:00 [DBG] 798 recurring job(s) processed by scheduler. +2021-08-21 14:10:16.985 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:10:36.068 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 14:10:47.014 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:11:17.032 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:11:31.845 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 14:11:47.051 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:11:47.483 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 14:12:01.045 +08:00 [DBG] 864 recurring job(s) processed by scheduler. +2021-08-21 14:12:17.072 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:12:47.096 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:13:17.135 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:13:46.997 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 14:13:47.159 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:14:01.054 +08:00 [DBG] 890 recurring job(s) processed by scheduler. +2021-08-21 14:14:17.182 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:14:47.196 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:15:17.219 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:15:36.089 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 14:15:47.008 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 14:15:47.238 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:16:01.061 +08:00 [DBG] 888 recurring job(s) processed by scheduler. +2021-08-21 14:16:17.258 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:16:47.282 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:17:17.300 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:17:47.328 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:18:01.050 +08:00 [DBG] 930 recurring job(s) processed by scheduler. +2021-08-21 14:18:17.360 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:18:47.380 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:19:17.400 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:19:47.416 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:20:01.052 +08:00 [DBG] 936 recurring job(s) processed by scheduler. +2021-08-21 14:20:17.442 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:20:36.100 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 14:20:47.452 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:21:17.478 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:21:47.517 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:22:01.325 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 14:22:17.548 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:22:47.568 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:23:17.588 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:23:47.616 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:24:17.086 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 14:24:17.634 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:24:32.662 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 14:24:47.651 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:24:48.339 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 14:25:01.046 +08:00 [DBG] 809 recurring job(s) processed by scheduler. +2021-08-21 14:25:17.666 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:25:36.117 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 14:25:47.690 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:26:17.711 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:26:31.792 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 14:26:47.195 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 14:26:47.731 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:27:01.045 +08:00 [DBG] 883 recurring job(s) processed by scheduler. +2021-08-21 14:27:17.758 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:27:47.769 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:28:17.783 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:28:31.817 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 14:28:47.396 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 14:28:47.815 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:29:01.045 +08:00 [DBG] 878 recurring job(s) processed by scheduler. +2021-08-21 14:29:17.857 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:29:47.882 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:30:17.913 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:30:36.148 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 14:30:46.712 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 14:30:47.952 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:31:01.047 +08:00 [DBG] 910 recurring job(s) processed by scheduler. +2021-08-21 14:31:17.982 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:31:48.010 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:32:18.041 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:32:48.049 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:33:01.042 +08:00 [DBG] 941 recurring job(s) processed by scheduler. +2021-08-21 14:33:18.080 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:33:48.105 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:34:18.134 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:34:48.167 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:35:01.052 +08:00 [DBG] 939 recurring job(s) processed by scheduler. +2021-08-21 14:35:18.190 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:35:36.151 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 14:35:48.223 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:36:18.239 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:36:48.269 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:37:01.282 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 14:37:18.286 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:37:48.323 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:38:18.350 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:38:48.381 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:39:01.518 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 14:39:18.398 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:39:48.413 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:40:18.428 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:40:36.166 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 14:40:48.465 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:41:18.484 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:41:32.547 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 14:41:48.258 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 14:41:48.492 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:42:01.055 +08:00 [DBG] 802 recurring job(s) processed by scheduler. +2021-08-21 14:42:18.515 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:42:48.532 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:43:18.543 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:43:31.802 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 14:43:47.311 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 14:43:48.549 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:44:01.046 +08:00 [DBG] 878 recurring job(s) processed by scheduler. +2021-08-21 14:44:18.569 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:44:48.603 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:45:18.608 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:45:36.169 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 14:45:46.814 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 14:45:48.635 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:46:01.049 +08:00 [DBG] 903 recurring job(s) processed by scheduler. +2021-08-21 14:46:18.658 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:46:48.679 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:47:18.701 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:47:46.960 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 14:47:48.705 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:48:01.045 +08:00 [DBG] 881 recurring job(s) processed by scheduler. +2021-08-21 14:48:18.726 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:48:48.764 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:49:18.791 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:49:48.818 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:50:01.054 +08:00 [DBG] 953 recurring job(s) processed by scheduler. +2021-08-21 14:50:18.842 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:50:35.289 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-08-21 14:50:35.291 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-08-21 14:50:35.309 +08:00 [DBG] removed records count=0 +2021-08-21 14:50:35.309 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-08-21 14:50:35.310 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-08-21 14:50:35.317 +08:00 [DBG] removed records count=0 +2021-08-21 14:50:35.317 +08:00 [DBG] Removing outdated records from table 'List'... +2021-08-21 14:50:35.318 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-08-21 14:50:35.324 +08:00 [DBG] removed records count=0 +2021-08-21 14:50:35.324 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-08-21 14:50:35.326 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-08-21 14:50:35.331 +08:00 [DBG] removed records count=0 +2021-08-21 14:50:35.331 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-08-21 14:50:35.332 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-08-21 14:50:35.338 +08:00 [DBG] removed records count=0 +2021-08-21 14:50:36.184 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 14:50:48.882 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:51:18.912 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:51:48.924 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:52:01.050 +08:00 [DBG] 931 recurring job(s) processed by scheduler. +2021-08-21 14:52:18.955 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:52:48.981 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:53:19.004 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:53:49.029 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:54:01.284 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 14:54:19.056 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:54:49.085 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:55:19.095 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:55:36.210 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 14:55:49.132 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:56:17.078 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 14:56:19.157 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:56:32.916 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 14:56:48.683 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 14:56:49.180 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:57:01.052 +08:00 [DBG] 775 recurring job(s) processed by scheduler. +2021-08-21 14:57:19.206 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:57:49.226 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:58:19.238 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:58:31.742 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 14:58:47.342 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 14:58:49.251 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:59:01.048 +08:00 [DBG] 881 recurring job(s) processed by scheduler. +2021-08-21 14:59:19.284 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 14:59:49.326 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:00:19.338 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:00:31.631 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 15:00:36.220 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 15:00:47.301 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 15:00:49.348 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:01:01.042 +08:00 [DBG] 870 recurring job(s) processed by scheduler. +2021-08-21 15:01:19.366 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:01:49.395 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:02:19.415 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:02:46.831 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 15:02:49.426 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:03:01.051 +08:00 [DBG] 906 recurring job(s) processed by scheduler. +2021-08-21 15:03:19.440 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:03:49.462 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:04:19.494 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:04:49.518 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:05:01.043 +08:00 [DBG] 949 recurring job(s) processed by scheduler. +2021-08-21 15:05:19.534 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:05:36.234 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 15:05:49.549 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:06:19.568 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:06:49.595 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:07:01.046 +08:00 [DBG] 937 recurring job(s) processed by scheduler. +2021-08-21 15:07:19.614 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:07:49.637 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:08:19.659 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:08:49.690 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:09:01.359 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 15:09:19.730 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:09:49.765 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:10:19.802 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:10:36.273 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 15:10:49.839 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:11:01.642 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 15:11:19.865 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:11:49.903 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:12:19.940 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:12:49.961 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:13:19.979 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:13:32.501 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 15:13:48.240 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 15:13:49.991 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:14:01.054 +08:00 [DBG] 819 recurring job(s) processed by scheduler. +2021-08-21 15:14:20.013 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:14:50.034 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:15:20.048 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:15:31.761 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 15:15:36.254 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 15:15:47.287 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 15:15:50.070 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:16:01.045 +08:00 [DBG] 881 recurring job(s) processed by scheduler. +2021-08-21 15:16:20.090 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:16:50.113 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:17:20.132 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:17:46.812 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 15:17:50.149 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:18:01.055 +08:00 [DBG] 899 recurring job(s) processed by scheduler. +2021-08-21 15:18:20.165 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:18:50.198 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:19:20.227 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:19:47.082 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 15:19:50.244 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:20:01.043 +08:00 [DBG] 895 recurring job(s) processed by scheduler. +2021-08-21 15:20:20.263 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:20:36.223 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 15:20:50.282 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:21:20.307 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:21:50.321 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:22:01.052 +08:00 [DBG] 940 recurring job(s) processed by scheduler. +2021-08-21 15:22:20.347 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:22:50.361 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:23:20.376 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:23:50.402 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:24:01.052 +08:00 [DBG] 943 recurring job(s) processed by scheduler. +2021-08-21 15:24:20.410 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:24:50.443 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:25:20.460 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:25:36.232 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 15:25:50.478 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:26:01.335 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 15:26:20.487 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:26:50.507 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:27:20.529 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:27:50.566 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:28:17.192 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 15:28:20.578 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:28:32.780 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 15:28:48.440 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 15:28:50.596 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:29:01.042 +08:00 [DBG] 792 recurring job(s) processed by scheduler. +2021-08-21 15:29:20.627 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:29:50.653 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:30:20.663 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:30:31.864 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 15:30:36.254 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 15:30:47.571 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 15:30:50.676 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:31:01.043 +08:00 [DBG] 853 recurring job(s) processed by scheduler. +2021-08-21 15:31:20.701 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:31:50.735 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:32:20.746 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:32:31.878 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 15:32:47.548 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 15:32:50.766 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:33:01.049 +08:00 [DBG] 859 recurring job(s) processed by scheduler. +2021-08-21 15:33:20.773 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:33:50.799 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:34:20.806 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:34:46.787 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 15:34:50.812 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:35:01.049 +08:00 [DBG] 909 recurring job(s) processed by scheduler. +2021-08-21 15:35:20.836 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:35:36.244 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 15:35:50.867 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:36:20.893 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:36:50.910 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:37:01.048 +08:00 [DBG] 935 recurring job(s) processed by scheduler. +2021-08-21 15:37:20.935 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:37:50.961 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:38:20.995 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:38:51.023 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:39:01.044 +08:00 [DBG] 936 recurring job(s) processed by scheduler. +2021-08-21 15:39:21.053 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:39:51.084 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:40:21.113 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:40:36.257 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 15:40:51.153 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:41:01.326 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 15:41:21.172 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:41:51.191 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:42:21.219 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:42:51.240 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:43:01.651 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 15:43:21.263 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:43:51.292 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:44:21.308 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:44:51.325 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:45:21.336 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:45:32.639 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 15:45:36.284 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 15:45:48.326 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 15:45:51.363 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:46:01.045 +08:00 [DBG] 802 recurring job(s) processed by scheduler. +2021-08-21 15:46:21.378 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:46:51.398 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:47:21.419 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:47:31.830 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 15:47:47.632 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 15:47:51.437 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:48:01.046 +08:00 [DBG] 845 recurring job(s) processed by scheduler. +2021-08-21 15:48:21.463 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:48:51.490 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:49:21.507 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:49:47.224 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 15:49:51.528 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:50:01.047 +08:00 [DBG] 797 recurring job(s) processed by scheduler. +2021-08-21 15:50:21.556 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:50:35.206 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-08-21 15:50:35.208 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-08-21 15:50:35.226 +08:00 [DBG] removed records count=0 +2021-08-21 15:50:35.226 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-08-21 15:50:35.227 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-08-21 15:50:35.234 +08:00 [DBG] removed records count=0 +2021-08-21 15:50:35.234 +08:00 [DBG] Removing outdated records from table 'List'... +2021-08-21 15:50:35.235 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-08-21 15:50:35.240 +08:00 [DBG] removed records count=0 +2021-08-21 15:50:35.240 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-08-21 15:50:35.241 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-08-21 15:50:35.247 +08:00 [DBG] removed records count=0 +2021-08-21 15:50:35.247 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-08-21 15:50:35.248 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-08-21 15:50:35.253 +08:00 [DBG] removed records count=0 +2021-08-21 15:50:36.277 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 15:50:51.576 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:51:21.603 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:51:46.940 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 15:51:51.614 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:52:01.055 +08:00 [DBG] 895 recurring job(s) processed by scheduler. +2021-08-21 15:52:21.647 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:52:51.663 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:53:21.695 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:53:51.714 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:54:01.046 +08:00 [DBG] 937 recurring job(s) processed by scheduler. +2021-08-21 15:54:21.723 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:54:51.749 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:55:21.770 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:55:36.271 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 15:55:51.798 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:56:01.056 +08:00 [DBG] 943 recurring job(s) processed by scheduler. +2021-08-21 15:56:21.804 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:56:51.831 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:57:21.850 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:57:51.868 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 15:58:01.366 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 15:58:21.896 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:30:35.582 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 16:30:41.988 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:30:41.989 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:30:41.990 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 1.7082ms +2021-08-21 16:30:41.993 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:30:41.993 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:30:41.997 +08:00 [INF] Successfully validated the token. +2021-08-21 16:30:42.024 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:30:42.024 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:30:42.025 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 32.1065ms +2021-08-21 16:30:42.126 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 16:30:42.126 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:30:42.126 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.5835ms +2021-08-21 16:30:42.129 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 16:30:42.129 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:30:42.132 +08:00 [INF] Successfully validated the token. +2021-08-21 16:30:42.133 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 16:30:42.135 +08:00 [DBG] Not found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 16:30:42.140 +08:00 [DBG] Getting all granted permissions from the repository for this provider name,key: U,39fe52c6-27a0-d54c-0b47-4133f044c8fa +2021-08-21 16:30:42.186 +08:00 [DBG] Setting the cache items. Count: 24 +2021-08-21 16:30:42.194 +08:00 [DBG] Finished setting the cache items. Count: 24 +2021-08-21 16:30:42.194 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 16:30:42.196 +08:00 [DBG] Not found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 16:30:42.196 +08:00 [DBG] Getting all granted permissions from the repository for this provider name,key: R,admin +2021-08-21 16:30:42.231 +08:00 [DBG] Setting the cache items. Count: 24 +2021-08-21 16:30:42.240 +08:00 [DBG] Finished setting the cache items. Count: 24 +2021-08-21 16:30:42.241 +08:00 [INF] Authorization was successful. +2021-08-21 16:30:42.243 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:30:42.244 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 16:30:42.286 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:30:42.291 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 46.9637ms +2021-08-21 16:30:42.291 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:30:42.294 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:30:42.322 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:30:42.322 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:30:42.322 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 193.1760ms +2021-08-21 16:30:56.030 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:31:14.477 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:31:14.478 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:31:14.479 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 2.0918ms +2021-08-21 16:31:14.485 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:31:14.485 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:31:14.488 +08:00 [INF] Successfully validated the token. +2021-08-21 16:31:14.510 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:31:14.510 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:31:14.511 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 25.8560ms +2021-08-21 16:31:14.824 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 16:31:14.824 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:31:14.825 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4898ms +2021-08-21 16:31:14.826 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 16:31:14.827 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:31:14.829 +08:00 [INF] Successfully validated the token. +2021-08-21 16:31:14.829 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 16:31:14.833 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 16:31:14.833 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 16:31:14.836 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 16:31:14.836 +08:00 [INF] Authorization was successful. +2021-08-21 16:31:14.837 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:31:14.837 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 16:31:14.869 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:31:14.872 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 35.201ms +2021-08-21 16:31:14.872 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:31:14.876 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:31:14.899 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:31:14.899 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:31:14.900 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 73.2960ms +2021-08-21 16:31:26.039 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:31:44.628 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:31:44.629 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:31:44.629 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5778ms +2021-08-21 16:31:44.631 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:31:44.631 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:31:44.634 +08:00 [INF] Successfully validated the token. +2021-08-21 16:31:44.660 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:31:44.660 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:31:44.660 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 27.3947ms +2021-08-21 16:31:45.225 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 16:31:45.226 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:31:45.226 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.5997ms +2021-08-21 16:31:45.228 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 16:31:45.229 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:31:45.232 +08:00 [INF] Successfully validated the token. +2021-08-21 16:31:45.233 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 16:31:45.237 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 16:31:45.237 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 16:31:45.241 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 16:31:45.241 +08:00 [INF] Authorization was successful. +2021-08-21 16:31:45.242 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:31:45.242 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 16:31:45.283 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:31:45.288 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 42.6295ms +2021-08-21 16:31:45.288 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:31:45.292 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:31:45.318 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:31:45.319 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:31:45.319 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 85.3148ms +2021-08-21 16:31:52.043 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:31:52.044 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:31:52.044 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4594ms +2021-08-21 16:31:52.045 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:31:52.046 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:31:52.048 +08:00 [INF] Successfully validated the token. +2021-08-21 16:31:52.075 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:31:52.075 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:31:52.075 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 28.5819ms +2021-08-21 16:31:52.564 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 16:31:52.564 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:31:52.564 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.5619ms +2021-08-21 16:31:52.566 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 16:31:52.567 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:31:52.569 +08:00 [INF] Successfully validated the token. +2021-08-21 16:31:52.570 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 16:31:52.574 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 16:31:52.574 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 16:31:52.577 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 16:31:52.577 +08:00 [INF] Authorization was successful. +2021-08-21 16:31:52.578 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:31:52.579 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 16:31:52.616 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:31:52.620 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 39.6553ms +2021-08-21 16:31:52.620 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:31:52.623 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:31:52.657 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:31:52.657 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:31:52.657 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 87.6927ms +2021-08-21 16:31:56.943 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:32:03.169 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:32:03.169 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:32:03.170 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.8576ms +2021-08-21 16:32:03.172 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:32:03.172 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:32:03.174 +08:00 [INF] Successfully validated the token. +2021-08-21 16:32:03.210 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:32:03.210 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:32:03.210 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 37.4388ms +2021-08-21 16:32:03.860 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 16:32:03.860 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:32:03.860 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.5606ms +2021-08-21 16:32:03.863 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 16:32:03.863 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:32:03.865 +08:00 [INF] Successfully validated the token. +2021-08-21 16:32:03.866 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 16:32:03.869 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 16:32:03.869 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 16:32:03.872 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 16:32:03.872 +08:00 [INF] Authorization was successful. +2021-08-21 16:32:03.874 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:32:03.874 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 16:32:03.913 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:32:03.918 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 42.8545ms +2021-08-21 16:32:03.918 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:32:03.923 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:32:03.952 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:32:03.952 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:32:03.953 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 88.4834ms +2021-08-21 16:32:24.370 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 16:32:27.341 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:32:41.720 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 16:32:43.462 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 16:32:46.449 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:32:46.449 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:32:46.449 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6171ms +2021-08-21 16:32:46.451 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:32:46.452 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:32:46.454 +08:00 [INF] Successfully validated the token. +2021-08-21 16:32:46.477 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:32:46.477 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:32:46.478 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.4806ms +2021-08-21 16:32:47.140 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 16:32:47.140 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:32:47.141 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4845ms +2021-08-21 16:32:47.143 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 16:32:47.143 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:32:47.145 +08:00 [INF] Successfully validated the token. +2021-08-21 16:32:47.146 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 16:32:47.150 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 16:32:47.150 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 16:32:47.153 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 16:32:47.153 +08:00 [INF] Authorization was successful. +2021-08-21 16:32:47.154 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:32:47.154 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 16:32:47.190 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:32:47.194 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 39.9936ms +2021-08-21 16:32:47.194 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:32:47.198 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:32:47.225 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:32:47.225 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:32:47.225 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 82.8050ms +2021-08-21 16:32:57.381 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:33:01.081 +08:00 [DBG] 910 recurring job(s) processed by scheduler. +2021-08-21 16:33:06.381 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:33:06.382 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:33:06.382 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6547ms +2021-08-21 16:33:06.385 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:33:06.386 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:33:06.388 +08:00 [INF] Successfully validated the token. +2021-08-21 16:33:06.417 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:33:06.417 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:33:06.417 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 32.0963ms +2021-08-21 16:33:07.110 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 16:33:07.111 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:33:07.111 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4735ms +2021-08-21 16:33:07.113 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 16:33:07.113 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:33:07.116 +08:00 [INF] Successfully validated the token. +2021-08-21 16:33:07.117 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 16:33:07.120 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 16:33:07.121 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 16:33:07.123 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 16:33:07.123 +08:00 [INF] Authorization was successful. +2021-08-21 16:33:07.124 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:33:07.124 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 16:33:07.157 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:33:07.161 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 36.111ms +2021-08-21 16:33:07.161 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:33:07.164 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:33:07.188 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:33:07.188 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:33:07.189 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 75.9127ms +2021-08-21 16:33:23.062 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:33:23.063 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:33:23.063 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5071ms +2021-08-21 16:33:23.065 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:33:23.065 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:33:23.067 +08:00 [INF] Successfully validated the token. +2021-08-21 16:33:23.094 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:33:23.094 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:33:23.094 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 29.6324ms +2021-08-21 16:33:23.166 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 16:33:23.167 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:33:23.167 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4538ms +2021-08-21 16:33:23.169 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 16:33:23.170 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:33:23.172 +08:00 [INF] Successfully validated the token. +2021-08-21 16:33:23.173 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 16:33:23.177 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 16:33:23.177 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 16:33:23.180 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 16:33:23.180 +08:00 [INF] Authorization was successful. +2021-08-21 16:33:23.181 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:33:23.181 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 16:33:23.216 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:33:23.220 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 39.1301ms +2021-08-21 16:33:23.221 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:33:23.224 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:33:23.252 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:33:23.252 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:33:23.252 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 82.8169ms +2021-08-21 16:33:27.399 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:33:31.480 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:33:31.480 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:33:31.480 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5003ms +2021-08-21 16:33:31.482 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:33:31.482 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:33:31.485 +08:00 [INF] Successfully validated the token. +2021-08-21 16:33:31.506 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:33:31.506 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:33:31.506 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 24.0120ms +2021-08-21 16:33:32.103 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 16:33:32.104 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:33:32.104 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4913ms +2021-08-21 16:33:32.105 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 16:33:32.105 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:33:32.108 +08:00 [INF] Successfully validated the token. +2021-08-21 16:33:32.108 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 16:33:32.111 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 16:33:32.112 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 16:33:32.114 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 16:33:32.114 +08:00 [INF] Authorization was successful. +2021-08-21 16:33:32.115 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:33:32.115 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 16:33:32.148 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:33:32.152 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 36.6354ms +2021-08-21 16:33:32.152 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:33:32.155 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:33:32.180 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:33:32.180 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:33:32.181 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 75.6118ms +2021-08-21 16:33:40.931 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:33:40.931 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:33:40.931 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6152ms +2021-08-21 16:33:40.933 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:33:40.934 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:33:40.936 +08:00 [INF] Successfully validated the token. +2021-08-21 16:33:40.960 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:33:40.960 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:33:40.961 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 27.0803ms +2021-08-21 16:33:41.095 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 16:33:41.095 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:33:41.096 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4459ms +2021-08-21 16:33:41.097 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 16:33:41.097 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:33:41.100 +08:00 [INF] Successfully validated the token. +2021-08-21 16:33:41.100 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 16:33:41.104 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 16:33:41.104 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 16:33:41.107 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 16:33:41.107 +08:00 [INF] Authorization was successful. +2021-08-21 16:33:41.108 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:33:41.109 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 16:33:41.142 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:33:41.147 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 38.2262ms +2021-08-21 16:33:41.147 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:33:41.151 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:33:41.175 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:33:41.175 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:33:41.176 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 78.6555ms +2021-08-21 16:33:57.413 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:34:03.368 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:34:03.368 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:34:03.368 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4659ms +2021-08-21 16:34:03.370 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:34:03.370 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:34:03.373 +08:00 [INF] Successfully validated the token. +2021-08-21 16:34:03.396 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:34:03.396 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:34:03.397 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.5733ms +2021-08-21 16:34:04.100 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 16:34:04.100 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:34:04.101 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4523ms +2021-08-21 16:34:04.102 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 16:34:04.103 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:34:04.105 +08:00 [INF] Successfully validated the token. +2021-08-21 16:34:04.106 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 16:34:04.110 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 16:34:04.110 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 16:34:04.112 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 16:34:04.112 +08:00 [INF] Authorization was successful. +2021-08-21 16:34:04.114 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:34:04.114 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 16:34:04.151 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:34:04.154 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 40.2358ms +2021-08-21 16:34:04.154 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:34:04.158 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:34:04.183 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:34:04.183 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:34:04.184 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 81.4241ms +2021-08-21 16:34:27.417 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:34:32.204 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 16:34:48.791 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 16:34:57.435 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:35:01.054 +08:00 [DBG] 759 recurring job(s) processed by scheduler. +2021-08-21 16:35:27.460 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:35:57.462 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:36:27.477 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:36:32.973 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 16:36:50.281 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 16:36:57.491 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:37:01.055 +08:00 [DBG] 643 recurring job(s) processed by scheduler. +2021-08-21 16:37:27.516 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:37:41.671 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 16:37:57.537 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:38:27.557 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:38:49.251 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 16:38:57.585 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:39:01.071 +08:00 [DBG] 614 recurring job(s) processed by scheduler. +2021-08-21 16:39:27.605 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:39:33.864 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:39:33.864 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:39:33.865 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5318ms +2021-08-21 16:39:33.867 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:39:33.868 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:39:33.870 +08:00 [INF] Successfully validated the token. +2021-08-21 16:39:33.891 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:39:33.891 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:39:33.892 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 24.4297ms +2021-08-21 16:39:33.980 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-21 16:39:33.981 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:39:33.981 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4433ms +2021-08-21 16:39:33.982 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-21 16:39:33.983 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:39:33.985 +08:00 [INF] Successfully validated the token. +2021-08-21 16:39:33.986 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 16:39:33.989 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-21 16:39:33.990 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 16:39:33.992 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-21 16:39:33.992 +08:00 [INF] Authorization was successful. +2021-08-21 16:39:33.993 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:39:33.993 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-21 16:39:34.026 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:39:34.030 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 36.9927ms +2021-08-21 16:39:34.030 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:39:34.035 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:39:34.062 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:39:34.062 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:39:34.062 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 79.7578ms +2021-08-21 16:39:37.794 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 16:39:37.795 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:39:37.795 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.7511ms +2021-08-21 16:39:37.796 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 16:39:37.798 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:39:37.800 +08:00 [INF] Successfully validated the token. +2021-08-21 16:39:37.802 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:39:37.806 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 16:39:38.197 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:39:38.210 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 404.0283ms +2021-08-21 16:39:38.210 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:39:38.233 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:39:38.258 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:39:38.258 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:39:38.258 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 461.8272ms +2021-08-21 16:39:57.628 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:40:26.357 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 16:40:26.357 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:40:26.357 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4872ms +2021-08-21 16:40:26.359 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 16:40:26.359 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:40:26.362 +08:00 [INF] Successfully validated the token. +2021-08-21 16:40:26.363 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:40:26.363 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 16:40:26.412 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:40:26.413 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 49.9051ms +2021-08-21 16:40:26.413 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:40:26.419 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:40:26.444 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:40:26.444 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:40:26.444 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 84.9666ms +2021-08-21 16:40:27.674 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:40:57.690 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:41:01.062 +08:00 [DBG] 788 recurring job(s) processed by scheduler. +2021-08-21 16:41:27.713 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:41:57.731 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:42:27.751 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:42:41.683 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 16:42:57.764 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:43:01.049 +08:00 [DBG] 793 recurring job(s) processed by scheduler. +2021-08-21 16:43:27.779 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:43:57.803 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:44:27.822 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:44:57.835 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:45:01.341 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 16:45:27.857 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:45:57.881 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:46:27.913 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:46:57.942 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:47:01.622 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 16:47:27.984 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:47:41.695 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 16:47:58.013 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:48:28.034 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:48:58.059 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:49:28.078 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:49:34.498 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 16:49:51.857 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 16:49:58.106 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:50:01.049 +08:00 [DBG] 524 recurring job(s) processed by scheduler. +2021-08-21 16:50:28.126 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:50:58.158 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:51:28.181 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:51:28.959 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:51:28.959 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:51:28.959 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5214ms +2021-08-21 16:51:28.963 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:51:28.964 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:51:28.967 +08:00 [INF] Successfully validated the token. +2021-08-21 16:51:28.996 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:51:28.996 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:51:28.996 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 32.8584ms +2021-08-21 16:51:29.150 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 16:51:29.150 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:51:29.150 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.7742ms +2021-08-21 16:51:29.153 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 16:51:29.153 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:51:29.156 +08:00 [INF] Successfully validated the token. +2021-08-21 16:51:29.158 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:51:29.158 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 16:51:29.220 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:51:29.223 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 63.2269ms +2021-08-21 16:51:29.223 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:51:29.232 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:51:29.263 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:51:29.263 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:51:29.263 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 110.4002ms +2021-08-21 16:51:33.535 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:51:33.536 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:51:33.536 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.8690ms +2021-08-21 16:51:33.539 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:51:33.540 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:51:33.543 +08:00 [INF] Successfully validated the token. +2021-08-21 16:51:33.572 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:51:33.572 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:51:33.572 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 33.1313ms +2021-08-21 16:51:33.730 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 16:51:33.730 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:51:33.743 +08:00 [INF] Successfully validated the token. +2021-08-21 16:51:33.746 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:51:33.747 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 16:51:33.808 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:51:33.810 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 62.8009ms +2021-08-21 16:51:33.810 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:51:33.819 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:51:33.849 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:51:33.849 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:51:33.849 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 119.8534ms +2021-08-21 16:51:35.690 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 16:51:37.841 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:51:37.842 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:51:37.842 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6731ms +2021-08-21 16:51:37.844 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:51:37.845 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:51:37.847 +08:00 [INF] Successfully validated the token. +2021-08-21 16:51:37.871 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:51:37.871 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:51:37.871 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.7497ms +2021-08-21 16:51:38.022 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 16:51:38.023 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:51:38.023 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.6500ms +2021-08-21 16:51:38.025 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 16:51:38.026 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:51:38.030 +08:00 [INF] Successfully validated the token. +2021-08-21 16:51:38.034 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:51:38.035 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 16:51:38.272 +08:00 [ERR] An error occurred using the connection to database 'CompanyNameProjectNameDB' on server 'localhost'. +2021-08-21 16:51:38.360 +08:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +{ + "code": null, + "message": "\u5BF9\u4E0D\u8D77,\u5728\u5904\u7406\u4F60\u7684\u8BF7\u6C42\u671F\u95F4,\u4EA7\u751F\u4E86\u4E00\u4E2A\u670D\u52A1\u5668\u5185\u90E8\u9519\u8BEF!", + "details": null, + "data": {}, + "validationErrors": null +} + +2021-08-21 16:51:38.362 +08:00 [ERR] The operation was canceled. +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.ConnectionPool.GetSessionAsync(MySqlConnection connection, Int32 startTickCount, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/ConnectionPool.cs:line 24 + at MySqlConnector.MySqlConnection.CreateSessionAsync(ConnectionPool pool, Int32 startTickCount, Nullable`1 ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlConnection.cs:line 846 + at MySqlConnector.MySqlConnection.OpenAsync(Nullable`1 ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlConnection.cs:line 410 + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenInternalAsync(Boolean errorsExpected, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenInternalAsync(Boolean errorsExpected, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenAsync(CancellationToken cancellationToken, Boolean errorsExpected) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlRelationalConnection.OpenAsync(CancellationToken cancellationToken, Boolean errorsExpected) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.BeginTransactionAsync(IsolationLevel isolationLevel, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.BeginTransactionAsync(CancellationToken cancellationToken) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextWithTransactionAsync(IUnitOfWork unitOfWork) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextAsync(IUnitOfWork unitOfWork) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextAsync(IUnitOfWork unitOfWork, String connectionStringName, String connectionString) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.GetDbContextAsync() + at Volo.Abp.Domain.Repositories.EntityFrameworkCore.EfCoreRepository`2.GetDbSetAsync() + at Volo.Abp.IdentityServer.Clients.ClientRepository.GetListAsync(String sorting, Int32 skipCount, Int32 maxResultCount, String filter, Boolean includeDetails, CancellationToken cancellationToken) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at CompanyName.ProjectName.IdentityServers.Clients.IdentityServerClientAppService.GetListAsync(PagingClientListInput input) in D:\abp\aspnet-core\services\src\CompanyName.ProjectName.Application\IdentityServers\Clients\IdentityServerClientAppService.cs:line 22 + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.GlobalFeatures.GlobalFeatureInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Auditing.AuditingInterceptor.ProceedByLoggingAsync(IAbpMethodInvocation invocation, IAuditingHelper auditingHelper, IAuditLogScope auditLogScope) + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Validation.ValidationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at lambda_method3160(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync() +--- End of stack trace from previous location --- + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) +2021-08-21 16:51:38.367 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2021-08-21 16:51:38.374 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 338.6575ms +2021-08-21 16:51:38.374 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:51:38.475 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:51:38.475 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:51:38.476 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 500 - application/json;+charset=utf-8 450.5259ms +2021-08-21 16:51:40.642 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:51:40.643 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:51:40.643 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5621ms +2021-08-21 16:51:40.646 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:51:40.646 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:51:40.650 +08:00 [INF] Successfully validated the token. +2021-08-21 16:51:40.675 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:51:40.675 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:51:40.675 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 29.6418ms +2021-08-21 16:51:40.852 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 16:51:40.853 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:51:40.856 +08:00 [INF] Successfully validated the token. +2021-08-21 16:51:40.857 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:51:40.857 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 16:51:40.914 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:51:40.916 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 58.82ms +2021-08-21 16:51:40.916 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:51:40.926 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:51:40.952 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:51:40.952 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:51:40.953 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 100.2484ms +2021-08-21 16:51:51.499 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:51:51.499 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:51:51.500 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6722ms +2021-08-21 16:51:51.502 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:51:51.502 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:51:51.505 +08:00 [INF] Successfully validated the token. +2021-08-21 16:51:51.536 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:51:51.536 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:51:51.536 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 34.0606ms +2021-08-21 16:51:51.644 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 16:51:51.644 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:51:51.644 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.7324ms +2021-08-21 16:51:51.648 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 16:51:51.649 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:51:51.652 +08:00 [INF] Successfully validated the token. +2021-08-21 16:51:51.655 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:51:51.655 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 16:51:51.798 +08:00 [ERR] Failed executing DbCommand (102ms) [Parameters=[@__ef_filter__p_0='?' (DbType = Boolean), @__p_1='?' (DbType = Int32), @__p_0='?' (DbType = Int32)], CommandType='"Text"', CommandTimeout='30'] +SELECT `t`.`Id`, `t`.`AbsoluteRefreshTokenLifetime`, `t`.`AccessTokenLifetime`, `t`.`AccessTokenType`, `t`.`AllowAccessTokensViaBrowser`, `t`.`AllowOfflineAccess`, `t`.`AllowPlainTextPkce`, `t`.`AllowRememberConsent`, `t`.`AllowedIdentityTokenSigningAlgorithms`, `t`.`AlwaysIncludeUserClaimsInIdToken`, `t`.`AlwaysSendClientClaims`, `t`.`AuthorizationCodeLifetime`, `t`.`BackChannelLogoutSessionRequired`, `t`.`BackChannelLogoutUri`, `t`.`ClientClaimsPrefix`, `t`.`ClientId`, `t`.`ClientName`, `t`.`ClientUri`, `t`.`ConcurrencyStamp`, `t`.`ConsentLifetime`, `t`.`CreationTime`, `t`.`CreatorId`, `t`.`DeleterId`, `t`.`DeletionTime`, `t`.`Description`, `t`.`DeviceCodeLifetime`, `t`.`EnableLocalLogin`, `t`.`Enabled`, `t`.`ExtraProperties`, `t`.`FrontChannelLogoutSessionRequired`, `t`.`FrontChannelLogoutUri`, `t`.`IdentityTokenLifetime`, `t`.`IncludeJwtId`, `t`.`IsDeleted`, `t`.`LastModificationTime`, `t`.`LastModifierId`, `t`.`LogoUri`, `t`.`PairWiseSubjectSalt`, `t`.`ProtocolType`, `t`.`RefreshTokenExpiration`, `t`.`RefreshTokenUsage`, `t`.`RequireClientSecret`, `t`.`RequireConsent`, `t`.`RequirePkce`, `t`.`RequireRequestObject`, `t`.`SlidingRefreshTokenLifetime`, `t`.`UpdateAccessTokenClaimsOnRefresh`, `t`.`UserCodeType`, `t`.`UserSsoLifetime` +FROM ( + SELECT `i`.`Id`, `i`.`AbsoluteRefreshTokenLifetime`, `i`.`AccessTokenLifetime`, `i`.`AccessTokenType`, `i`.`AllowAccessTokensViaBrowser`, `i`.`AllowOfflineAccess`, `i`.`AllowPlainTextPkce`, `i`.`AllowRememberConsent`, `i`.`AllowedIdentityTokenSigningAlgorithms`, `i`.`AlwaysIncludeUserClaimsInIdToken`, `i`.`AlwaysSendClientClaims`, `i`.`AuthorizationCodeLifetime`, `i`.`BackChannelLogoutSessionRequired`, `i`.`BackChannelLogoutUri`, `i`.`ClientClaimsPrefix`, `i`.`ClientId`, `i`.`ClientName`, `i`.`ClientUri`, `i`.`ConcurrencyStamp`, `i`.`ConsentLifetime`, `i`.`CreationTime`, `i`.`CreatorId`, `i`.`DeleterId`, `i`.`DeletionTime`, `i`.`Description`, `i`.`DeviceCodeLifetime`, `i`.`EnableLocalLogin`, `i`.`Enabled`, `i`.`ExtraProperties`, `i`.`FrontChannelLogoutSessionRequired`, `i`.`FrontChannelLogoutUri`, `i`.`IdentityTokenLifetime`, `i`.`IncludeJwtId`, `i`.`IsDeleted`, `i`.`LastModificationTime`, `i`.`LastModifierId`, `i`.`LogoUri`, `i`.`PairWiseSubjectSalt`, `i`.`ProtocolType`, `i`.`RefreshTokenExpiration`, `i`.`RefreshTokenUsage`, `i`.`RequireClientSecret`, `i`.`RequireConsent`, `i`.`RequirePkce`, `i`.`RequireRequestObject`, `i`.`SlidingRefreshTokenLifetime`, `i`.`UpdateAccessTokenClaimsOnRefresh`, `i`.`UserCodeType`, `i`.`UserSsoLifetime` + FROM `IdentityServerClients` AS `i` + WHERE @__ef_filter__p_0 OR NOT (`i`.`IsDeleted`) + ORDER BY `i`.`CreationTime` + LIMIT @__p_1 OFFSET @__p_0 +) AS `t` +ORDER BY `t`.`CreationTime`, `t`.`Id` +2021-08-21 16:51:51.807 +08:00 [ERR] An exception occurred while iterating over the results of a query for context type 'Volo.Abp.IdentityServer.EntityFrameworkCore.IdentityServerDbContext'. +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 19 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 310 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 304 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.InitializeReaderAsync(DbContext _, Boolean result, CancellationToken cancellationToken) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.MoveNextAsync() +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 19 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 310 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 304 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.InitializeReaderAsync(DbContext _, Boolean result, CancellationToken cancellationToken) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.MoveNextAsync() +2021-08-21 16:51:52.027 +08:00 [ERR] An error occurred using a transaction. +2021-08-21 16:51:52.031 +08:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +{ + "code": null, + "message": "\u5BF9\u4E0D\u8D77,\u5728\u5904\u7406\u4F60\u7684\u8BF7\u6C42\u671F\u95F4,\u4EA7\u751F\u4E86\u4E00\u4E2A\u670D\u52A1\u5668\u5185\u90E8\u9519\u8BEF!", + "details": null, + "data": {}, + "validationErrors": null +} + +2021-08-21 16:51:52.031 +08:00 [ERR] The operation was canceled. +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 19 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 310 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 304 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.InitializeReaderAsync(DbContext _, Boolean result, CancellationToken cancellationToken) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.MoveNextAsync() + at Microsoft.EntityFrameworkCore.EntityFrameworkQueryableExtensions.ToListAsync[TSource](IQueryable`1 source, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.EntityFrameworkQueryableExtensions.ToListAsync[TSource](IQueryable`1 source, CancellationToken cancellationToken) + at Volo.Abp.IdentityServer.Clients.ClientRepository.GetListAsync(String sorting, Int32 skipCount, Int32 maxResultCount, String filter, Boolean includeDetails, CancellationToken cancellationToken) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at CompanyName.ProjectName.IdentityServers.Clients.IdentityServerClientAppService.GetListAsync(PagingClientListInput input) in D:\abp\aspnet-core\services\src\CompanyName.ProjectName.Application\IdentityServers\Clients\IdentityServerClientAppService.cs:line 22 + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.GlobalFeatures.GlobalFeatureInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Auditing.AuditingInterceptor.ProceedByLoggingAsync(IAbpMethodInvocation invocation, IAuditingHelper auditingHelper, IAuditLogScope auditLogScope) + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Validation.ValidationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at lambda_method3160(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) +2021-08-21 16:51:52.031 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2021-08-21 16:51:52.032 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 376.0393ms +2021-08-21 16:51:52.032 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:51:52.114 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:51:52.114 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:51:52.114 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 500 - application/json;+charset=utf-8 466.6418ms +2021-08-21 16:51:58.001 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:51:58.001 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:51:58.002 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6457ms +2021-08-21 16:51:58.004 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:51:58.005 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:51:58.008 +08:00 [INF] Successfully validated the token. +2021-08-21 16:51:58.030 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:51:58.030 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:51:58.031 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.5387ms +2021-08-21 16:51:58.118 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 16:51:58.118 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:51:58.118 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.6034ms +2021-08-21 16:51:58.121 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 16:51:58.121 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:51:58.125 +08:00 [INF] Successfully validated the token. +2021-08-21 16:51:58.127 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:51:58.127 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 16:51:58.181 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:51:58.183 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 56.2908ms +2021-08-21 16:51:58.184 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:51:58.192 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:51:58.226 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:51:58.226 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:51:58.227 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 106.0615ms +2021-08-21 16:51:58.229 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:51:59.553 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 16:52:01.060 +08:00 [DBG] 84 recurring job(s) processed by scheduler. +2021-08-21 16:52:28.246 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:52:41.715 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 16:52:45.864 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:52:45.865 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:52:45.865 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5445ms +2021-08-21 16:52:45.867 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:52:45.868 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:52:45.870 +08:00 [INF] Successfully validated the token. +2021-08-21 16:52:45.909 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:52:45.909 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:52:45.909 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 41.9259ms +2021-08-21 16:52:45.976 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 16:52:45.977 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:52:45.977 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4639ms +2021-08-21 16:52:45.979 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 16:52:45.979 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:52:45.981 +08:00 [INF] Successfully validated the token. +2021-08-21 16:52:45.982 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:52:45.983 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 16:52:46.033 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:52:46.034 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 51.4666ms +2021-08-21 16:52:46.034 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:52:46.041 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:52:46.070 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:52:46.070 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:52:46.070 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 91.4648ms +2021-08-21 16:52:56.821 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:52:56.821 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:52:56.822 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6451ms +2021-08-21 16:52:56.824 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:52:56.824 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:52:56.826 +08:00 [INF] Successfully validated the token. +2021-08-21 16:52:56.860 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:52:56.860 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:52:56.860 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 36.4586ms +2021-08-21 16:52:56.927 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 16:52:56.927 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:52:56.927 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4454ms +2021-08-21 16:52:56.929 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 16:52:56.929 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:52:56.931 +08:00 [INF] Successfully validated the token. +2021-08-21 16:52:56.933 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:52:56.933 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 16:52:56.983 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:52:56.985 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 51.7501ms +2021-08-21 16:52:56.985 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:52:56.994 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:52:57.025 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:52:57.025 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:52:57.025 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 96.5638ms +2021-08-21 16:52:58.340 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:53:08.850 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:53:08.851 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:53:08.851 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6709ms +2021-08-21 16:53:08.853 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:53:08.853 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:53:08.856 +08:00 [INF] Successfully validated the token. +2021-08-21 16:53:08.890 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:53:08.890 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:53:08.890 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 36.9762ms +2021-08-21 16:53:09.004 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 16:53:09.005 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:53:09.005 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.6728ms +2021-08-21 16:53:09.010 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 16:53:09.010 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:53:09.014 +08:00 [INF] Successfully validated the token. +2021-08-21 16:53:09.016 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:53:09.016 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 16:53:09.075 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:53:09.077 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 60.5241ms +2021-08-21 16:53:09.077 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:53:09.087 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:53:09.127 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:53:09.128 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:53:09.128 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 118.1650ms +2021-08-21 16:53:20.310 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:53:20.311 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:53:20.311 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4383ms +2021-08-21 16:53:20.312 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:53:20.313 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:53:20.315 +08:00 [INF] Successfully validated the token. +2021-08-21 16:53:20.348 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:53:20.348 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:53:20.348 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 36.2578ms +2021-08-21 16:53:20.398 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 16:53:20.399 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:53:20.399 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4995ms +2021-08-21 16:53:20.401 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 16:53:20.401 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:53:20.404 +08:00 [INF] Successfully validated the token. +2021-08-21 16:53:20.405 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:53:20.405 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 16:53:20.459 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:53:20.461 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 55.5376ms +2021-08-21 16:53:20.461 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:53:20.468 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:53:20.498 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:53:20.498 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:53:20.498 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 97.4193ms +2021-08-21 16:53:28.165 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:53:28.165 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:53:28.165 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4536ms +2021-08-21 16:53:28.167 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:53:28.167 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:53:28.169 +08:00 [INF] Successfully validated the token. +2021-08-21 16:53:28.191 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:53:28.191 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:53:28.191 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 24.6997ms +2021-08-21 16:53:28.248 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 16:53:28.249 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:53:28.249 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.5237ms +2021-08-21 16:53:28.251 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 16:53:28.251 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:53:28.253 +08:00 [INF] Successfully validated the token. +2021-08-21 16:53:28.255 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:53:28.255 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 16:53:28.304 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:53:28.306 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 51.0136ms +2021-08-21 16:53:28.306 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:53:28.313 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:53:28.336 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:53:28.336 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:53:28.337 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 85.9288ms +2021-08-21 16:53:28.440 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:53:47.857 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 16:53:49.110 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:53:49.111 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:53:49.111 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.7540ms +2021-08-21 16:53:49.114 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:53:49.114 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:53:49.117 +08:00 [INF] Successfully validated the token. +2021-08-21 16:53:49.140 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:53:49.140 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:53:49.140 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.1783ms +2021-08-21 16:53:49.262 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 16:53:49.263 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:53:49.263 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4714ms +2021-08-21 16:53:49.265 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 16:53:49.265 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:53:49.268 +08:00 [INF] Successfully validated the token. +2021-08-21 16:53:49.269 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:53:49.270 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 16:53:49.319 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:53:49.322 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 51.9662ms +2021-08-21 16:53:49.322 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:53:49.332 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:53:49.360 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:53:49.360 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:53:49.360 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 95.2027ms +2021-08-21 16:53:54.960 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:53:54.960 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:53:54.961 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6677ms +2021-08-21 16:53:54.963 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:53:54.963 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:53:54.966 +08:00 [INF] Successfully validated the token. +2021-08-21 16:53:54.987 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:53:54.987 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:53:54.987 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 24.2175ms +2021-08-21 16:53:55.049 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 16:53:55.049 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:53:55.050 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.6860ms +2021-08-21 16:53:55.052 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 16:53:55.052 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:53:55.055 +08:00 [INF] Successfully validated the token. +2021-08-21 16:53:55.057 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:53:55.057 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 16:53:55.115 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:53:55.116 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 58.9793ms +2021-08-21 16:53:55.116 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:53:55.123 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:53:55.152 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:53:55.152 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:53:55.152 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 99.9297ms +2021-08-21 16:53:56.394 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:53:56.394 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:53:56.394 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4987ms +2021-08-21 16:53:56.396 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:53:56.396 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:53:56.398 +08:00 [INF] Successfully validated the token. +2021-08-21 16:53:56.418 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:53:56.418 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:53:56.419 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 22.6970ms +2021-08-21 16:53:56.519 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 16:53:56.519 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:53:56.522 +08:00 [INF] Successfully validated the token. +2021-08-21 16:53:56.524 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:53:56.524 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 16:53:56.576 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:53:56.578 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 54.1342ms +2021-08-21 16:53:56.578 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:53:56.585 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:53:56.612 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:53:56.612 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:53:56.612 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 93.6536ms +2021-08-21 16:53:58.507 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:53:58.658 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:53:58.659 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:53:58.659 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4949ms +2021-08-21 16:53:58.661 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:53:58.661 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:53:58.663 +08:00 [INF] Successfully validated the token. +2021-08-21 16:53:58.683 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:53:58.683 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:53:58.684 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 23.0805ms +2021-08-21 16:53:58.783 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 16:53:58.783 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:53:58.785 +08:00 [INF] Successfully validated the token. +2021-08-21 16:53:58.787 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:53:58.787 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 16:53:58.838 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:53:58.841 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 53.2749ms +2021-08-21 16:53:58.841 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:53:58.849 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:53:58.877 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:53:58.877 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:53:58.878 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 94.9190ms +2021-08-21 16:54:00.477 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:54:00.477 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:54:00.478 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5232ms +2021-08-21 16:54:00.480 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:54:00.480 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:54:00.482 +08:00 [INF] Successfully validated the token. +2021-08-21 16:54:00.504 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:00.504 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:00.504 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 24.4784ms +2021-08-21 16:54:00.565 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 16:54:00.565 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:54:00.565 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.5464ms +2021-08-21 16:54:00.567 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 16:54:00.568 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:54:00.572 +08:00 [INF] Successfully validated the token. +2021-08-21 16:54:00.575 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:54:00.575 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 16:54:00.629 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:54:00.631 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 55.7446ms +2021-08-21 16:54:00.631 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:54:00.640 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:00.665 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:00.666 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:00.666 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 98.7478ms +2021-08-21 16:54:01.050 +08:00 [DBG] 616 recurring job(s) processed by scheduler. +2021-08-21 16:54:03.049 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:54:03.049 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:54:03.049 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4439ms +2021-08-21 16:54:03.051 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:54:03.051 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:54:03.053 +08:00 [INF] Successfully validated the token. +2021-08-21 16:54:03.076 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:03.076 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:03.076 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 25.2372ms +2021-08-21 16:54:03.124 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 16:54:03.124 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:54:03.126 +08:00 [INF] Successfully validated the token. +2021-08-21 16:54:03.128 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:54:03.128 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 16:54:03.185 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:54:03.186 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 58.3372ms +2021-08-21 16:54:03.186 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:54:03.193 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:03.218 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:03.218 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:03.218 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 94.8206ms +2021-08-21 16:54:05.931 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:54:05.931 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:54:05.932 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5018ms +2021-08-21 16:54:05.933 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:54:05.934 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:54:05.936 +08:00 [INF] Successfully validated the token. +2021-08-21 16:54:05.959 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:05.959 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:05.960 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.2652ms +2021-08-21 16:54:06.029 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 16:54:06.029 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:54:06.030 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.5307ms +2021-08-21 16:54:06.032 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 16:54:06.032 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:54:06.035 +08:00 [INF] Successfully validated the token. +2021-08-21 16:54:06.036 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:54:06.036 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 16:54:06.088 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:54:06.090 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 53.2727ms +2021-08-21 16:54:06.090 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:54:06.097 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:06.125 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:06.125 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:06.125 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 93.2689ms +2021-08-21 16:54:07.905 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:54:07.905 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:54:07.905 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5054ms +2021-08-21 16:54:07.907 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:54:07.908 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:54:07.910 +08:00 [INF] Successfully validated the token. +2021-08-21 16:54:07.943 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:07.943 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:07.944 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 36.3118ms +2021-08-21 16:54:08.023 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 16:54:08.023 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:54:08.026 +08:00 [INF] Successfully validated the token. +2021-08-21 16:54:08.027 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:54:08.028 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 16:54:08.080 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:54:08.082 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 54.1387ms +2021-08-21 16:54:08.082 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:54:08.089 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:08.117 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:08.117 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:08.117 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 94.5325ms +2021-08-21 16:54:09.723 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:54:09.723 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:54:09.723 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4332ms +2021-08-21 16:54:09.724 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:54:09.725 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:54:09.727 +08:00 [INF] Successfully validated the token. +2021-08-21 16:54:09.747 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:09.747 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:09.748 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 23.1760ms +2021-08-21 16:54:09.802 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 16:54:09.802 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:54:09.805 +08:00 [INF] Successfully validated the token. +2021-08-21 16:54:09.806 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:54:09.806 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 16:54:09.856 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:54:09.857 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 51.0928ms +2021-08-21 16:54:09.857 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:54:09.864 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:09.891 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:09.891 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:09.891 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 89.4222ms +2021-08-21 16:54:12.076 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:54:12.077 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:54:12.077 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4352ms +2021-08-21 16:54:12.078 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:54:12.079 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:54:12.081 +08:00 [INF] Successfully validated the token. +2021-08-21 16:54:12.101 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:12.102 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:12.102 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 23.3724ms +2021-08-21 16:54:12.157 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 16:54:12.157 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:54:12.157 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.7704ms +2021-08-21 16:54:12.159 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 16:54:12.159 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:54:12.161 +08:00 [INF] Successfully validated the token. +2021-08-21 16:54:12.163 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:54:12.163 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 16:54:12.214 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:54:12.215 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 52.4975ms +2021-08-21 16:54:12.216 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:54:12.223 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:12.251 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:12.251 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:12.251 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 91.9996ms +2021-08-21 16:54:13.397 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:54:13.397 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:54:13.397 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5180ms +2021-08-21 16:54:13.399 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:54:13.399 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:54:13.401 +08:00 [INF] Successfully validated the token. +2021-08-21 16:54:13.425 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:13.425 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:13.426 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.8765ms +2021-08-21 16:54:13.487 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 16:54:13.487 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:54:13.490 +08:00 [INF] Successfully validated the token. +2021-08-21 16:54:13.492 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:54:13.492 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 16:54:13.544 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:54:13.546 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 53.697ms +2021-08-21 16:54:13.546 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:54:13.554 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:13.583 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:13.583 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:13.584 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 96.8968ms +2021-08-21 16:54:28.537 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:54:48.568 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:54:48.568 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:54:48.568 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5589ms +2021-08-21 16:54:48.570 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:54:48.570 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:54:48.572 +08:00 [INF] Successfully validated the token. +2021-08-21 16:54:48.594 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:48.594 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:48.595 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 25.0009ms +2021-08-21 16:54:48.675 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 16:54:48.675 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:54:48.675 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.6067ms +2021-08-21 16:54:48.677 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 16:54:48.678 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:54:48.680 +08:00 [INF] Successfully validated the token. +2021-08-21 16:54:48.682 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:54:48.682 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 16:54:48.731 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:54:48.733 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 50.9004ms +2021-08-21 16:54:48.733 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:54:48.740 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:48.771 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:48.771 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:48.771 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 93.9355ms +2021-08-21 16:54:53.624 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:54:53.624 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:54:53.624 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4549ms +2021-08-21 16:54:53.626 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:54:53.626 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:54:53.628 +08:00 [INF] Successfully validated the token. +2021-08-21 16:54:53.650 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:53.650 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:53.651 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 24.9278ms +2021-08-21 16:54:53.698 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 16:54:53.698 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:54:53.698 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4545ms +2021-08-21 16:54:53.699 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 16:54:53.700 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:54:53.702 +08:00 [INF] Successfully validated the token. +2021-08-21 16:54:53.703 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:54:53.703 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 16:54:53.767 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:54:53.769 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 65.9891ms +2021-08-21 16:54:53.769 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:54:53.777 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:53.804 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:53.804 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:54:53.805 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 105.0782ms +2021-08-21 16:54:58.609 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:55:28.638 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:55:47.082 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 16:55:58.659 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:56:01.045 +08:00 [DBG] 887 recurring job(s) processed by scheduler. +2021-08-21 16:56:28.704 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:56:41.681 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:56:41.681 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:56:41.681 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5638ms +2021-08-21 16:56:41.684 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:56:41.684 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:56:41.686 +08:00 [INF] Successfully validated the token. +2021-08-21 16:56:41.710 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:56:41.710 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:56:41.710 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.6414ms +2021-08-21 16:56:41.830 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 16:56:41.830 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:56:41.830 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4464ms +2021-08-21 16:56:41.832 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 16:56:41.832 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:56:41.835 +08:00 [INF] Successfully validated the token. +2021-08-21 16:56:41.837 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:56:41.837 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 16:56:41.889 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:56:41.890 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 52.9894ms +2021-08-21 16:56:41.890 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:56:41.898 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:56:41.926 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:56:41.926 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:56:41.927 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 94.7051ms +2021-08-21 16:56:58.722 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:57:22.102 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:57:22.102 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:57:22.102 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5690ms +2021-08-21 16:57:22.107 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:57:22.107 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:57:22.109 +08:00 [INF] Successfully validated the token. +2021-08-21 16:57:22.134 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:57:22.134 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:57:22.134 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 27.7195ms +2021-08-21 16:57:22.199 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 16:57:22.199 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:57:22.199 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4688ms +2021-08-21 16:57:22.201 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 16:57:22.201 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:57:22.205 +08:00 [INF] Successfully validated the token. +2021-08-21 16:57:22.206 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:57:22.207 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 16:57:22.259 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:57:22.261 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 54.8123ms +2021-08-21 16:57:22.262 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:57:22.268 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:57:22.298 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:57:22.299 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:57:22.299 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 97.8417ms +2021-08-21 16:57:28.753 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:57:38.220 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:57:38.220 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:57:38.220 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4968ms +2021-08-21 16:57:38.222 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:57:38.222 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:57:38.225 +08:00 [INF] Successfully validated the token. +2021-08-21 16:57:38.260 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:57:38.260 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:57:38.260 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 37.9987ms +2021-08-21 16:57:39.041 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 16:57:39.041 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:57:39.042 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4254ms +2021-08-21 16:57:39.043 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 16:57:39.043 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:57:39.045 +08:00 [INF] Successfully validated the token. +2021-08-21 16:57:39.046 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:57:39.047 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 16:57:39.092 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:57:39.094 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 47.1923ms +2021-08-21 16:57:39.094 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:57:39.101 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:57:39.127 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:57:39.127 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:57:39.127 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 84.1480ms +2021-08-21 16:57:41.743 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 16:57:54.601 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:57:54.602 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:57:54.602 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5077ms +2021-08-21 16:57:54.604 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:57:54.604 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:57:54.606 +08:00 [INF] Successfully validated the token. +2021-08-21 16:57:54.627 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:57:54.627 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:57:54.628 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 23.9291ms +2021-08-21 16:57:54.736 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 16:57:54.736 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:57:54.736 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4405ms +2021-08-21 16:57:54.738 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 16:57:54.738 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:57:54.740 +08:00 [INF] Successfully validated the token. +2021-08-21 16:57:54.742 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:57:54.742 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 16:57:54.789 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:57:54.791 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 49.2428ms +2021-08-21 16:57:54.791 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:57:54.799 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:57:54.828 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:57:54.828 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:57:54.829 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 91.2200ms +2021-08-21 16:57:58.840 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:58:01.061 +08:00 [DBG] 852 recurring job(s) processed by scheduler. +2021-08-21 16:58:11.386 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:58:11.387 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:58:11.387 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4641ms +2021-08-21 16:58:11.388 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:58:11.389 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:58:11.391 +08:00 [INF] Successfully validated the token. +2021-08-21 16:58:11.413 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:58:11.413 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:58:11.413 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 24.7159ms +2021-08-21 16:58:11.516 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 16:58:11.517 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:58:11.517 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4971ms +2021-08-21 16:58:11.519 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 16:58:11.519 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:58:11.522 +08:00 [INF] Successfully validated the token. +2021-08-21 16:58:11.524 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:58:11.524 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 16:58:11.585 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:58:11.587 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 62.8942ms +2021-08-21 16:58:11.588 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:58:11.597 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:58:11.624 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:58:11.624 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:58:11.625 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 105.8848ms +2021-08-21 16:58:12.875 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:58:12.876 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:58:12.876 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5360ms +2021-08-21 16:58:12.878 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:58:12.878 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:58:12.881 +08:00 [INF] Successfully validated the token. +2021-08-21 16:58:12.902 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:58:12.902 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:58:12.902 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 23.9664ms +2021-08-21 16:58:12.957 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 16:58:12.957 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:58:12.961 +08:00 [INF] Successfully validated the token. +2021-08-21 16:58:12.963 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:58:12.963 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 16:58:13.014 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:58:13.016 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 52.386ms +2021-08-21 16:58:13.016 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:58:13.024 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:58:13.051 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:58:13.051 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:58:13.051 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 94.2164ms +2021-08-21 16:58:28.925 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:58:36.688 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:58:36.688 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:58:36.688 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5081ms +2021-08-21 16:58:36.691 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:58:36.691 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:58:36.694 +08:00 [INF] Successfully validated the token. +2021-08-21 16:58:36.718 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:58:36.718 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:58:36.719 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 27.8514ms +2021-08-21 16:58:36.831 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 16:58:36.832 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:58:36.832 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4488ms +2021-08-21 16:58:36.834 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 16:58:36.834 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:58:36.836 +08:00 [INF] Successfully validated the token. +2021-08-21 16:58:36.838 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:58:36.838 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 16:58:36.889 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:58:36.891 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 53.2938ms +2021-08-21 16:58:36.891 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:58:36.899 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:58:36.930 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:58:36.930 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:58:36.931 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 96.6569ms +2021-08-21 16:58:58.944 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:59:27.750 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:59:27.751 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:59:27.751 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5564ms +2021-08-21 16:59:27.753 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:59:27.753 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:59:27.756 +08:00 [INF] Successfully validated the token. +2021-08-21 16:59:27.778 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:59:27.778 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:59:27.778 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 25.1467ms +2021-08-21 16:59:27.838 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 16:59:27.838 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:59:27.839 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.5675ms +2021-08-21 16:59:27.840 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 16:59:27.841 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:59:27.843 +08:00 [INF] Successfully validated the token. +2021-08-21 16:59:27.845 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:59:27.845 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 16:59:27.894 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:59:27.895 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 49.9829ms +2021-08-21 16:59:27.895 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:59:27.904 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:59:27.933 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:59:27.933 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:59:27.933 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 92.6220ms +2021-08-21 16:59:28.958 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 16:59:29.232 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:59:29.232 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:59:29.232 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4687ms +2021-08-21 16:59:29.234 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:59:29.234 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:59:29.237 +08:00 [INF] Successfully validated the token. +2021-08-21 16:59:29.259 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:59:29.259 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:59:29.259 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 25.1363ms +2021-08-21 16:59:29.310 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 16:59:29.310 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:59:29.312 +08:00 [INF] Successfully validated the token. +2021-08-21 16:59:29.314 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:59:29.314 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 16:59:29.363 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:59:29.365 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 50.8173ms +2021-08-21 16:59:29.365 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:59:29.371 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:59:29.398 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:59:29.398 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:59:29.399 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 88.7638ms +2021-08-21 16:59:39.359 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:59:39.359 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:59:39.359 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4380ms +2021-08-21 16:59:39.361 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:59:39.361 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:59:39.363 +08:00 [INF] Successfully validated the token. +2021-08-21 16:59:39.384 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:59:39.384 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:59:39.385 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 23.7822ms +2021-08-21 16:59:39.448 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 16:59:39.449 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:59:39.449 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4985ms +2021-08-21 16:59:39.451 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 16:59:39.451 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:59:39.454 +08:00 [INF] Successfully validated the token. +2021-08-21 16:59:39.455 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:59:39.455 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 16:59:39.504 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:59:39.507 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 51.4667ms +2021-08-21 16:59:39.507 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:59:39.514 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:59:39.553 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:59:39.553 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:59:39.553 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 102.5497ms +2021-08-21 16:59:40.647 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 16:59:40.648 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:59:40.648 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4675ms +2021-08-21 16:59:40.649 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 16:59:40.650 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:59:40.652 +08:00 [INF] Successfully validated the token. +2021-08-21 16:59:40.674 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:59:40.674 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:59:40.674 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 24.4935ms +2021-08-21 16:59:40.719 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 16:59:40.720 +08:00 [INF] CORS policy execution successful. +2021-08-21 16:59:40.723 +08:00 [INF] Successfully validated the token. +2021-08-21 16:59:40.724 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:59:40.725 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 16:59:40.780 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 16:59:40.782 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 56.806ms +2021-08-21 16:59:40.782 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 16:59:40.788 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:59:40.817 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:59:40.817 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 16:59:40.817 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 98.0363ms +2021-08-21 16:59:58.999 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:00:01.049 +08:00 [DBG] 874 recurring job(s) processed by scheduler. +2021-08-21 17:00:29.037 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:00:59.066 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:01:06.322 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 17:01:06.322 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:01:06.322 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4859ms +2021-08-21 17:01:06.324 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 17:01:06.325 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:01:06.327 +08:00 [INF] Successfully validated the token. +2021-08-21 17:01:06.351 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:01:06.351 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:01:06.351 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.4711ms +2021-08-21 17:01:06.405 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 17:01:06.405 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:01:06.406 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.5907ms +2021-08-21 17:01:06.408 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:01:06.409 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:01:06.411 +08:00 [INF] Successfully validated the token. +2021-08-21 17:01:06.412 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:01:06.412 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:01:06.460 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:01:06.462 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 49.7313ms +2021-08-21 17:01:06.462 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:01:06.470 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:01:06.498 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:01:06.498 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:01:06.498 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 90.0902ms +2021-08-21 17:01:07.942 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 17:01:07.942 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:01:07.943 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4564ms +2021-08-21 17:01:07.944 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 17:01:07.945 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:01:07.947 +08:00 [INF] Successfully validated the token. +2021-08-21 17:01:07.967 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:01:07.967 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:01:07.967 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 22.9060ms +2021-08-21 17:01:08.023 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:01:08.024 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:01:08.026 +08:00 [INF] Successfully validated the token. +2021-08-21 17:01:08.027 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:01:08.027 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:01:08.076 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:01:08.078 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 50.9442ms +2021-08-21 17:01:08.078 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:01:08.085 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:01:08.115 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:01:08.115 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:01:08.115 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 92.1032ms +2021-08-21 17:01:29.100 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:01:43.849 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 17:01:43.849 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:01:43.849 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4440ms +2021-08-21 17:01:43.851 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 17:01:43.851 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:01:43.854 +08:00 [INF] Successfully validated the token. +2021-08-21 17:01:43.875 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:01:43.875 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:01:43.875 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 24.2667ms +2021-08-21 17:01:43.967 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 17:01:43.968 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:01:43.968 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4363ms +2021-08-21 17:01:43.969 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:01:43.970 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:01:43.972 +08:00 [INF] Successfully validated the token. +2021-08-21 17:01:43.973 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:01:43.973 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:01:44.020 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:01:44.022 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 48.5082ms +2021-08-21 17:01:44.022 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:01:44.029 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:01:44.053 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:01:44.053 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:01:44.053 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 83.6426ms +2021-08-21 17:01:59.122 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:02:01.369 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 17:02:02.838 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 17:02:02.838 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:02:02.839 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5806ms +2021-08-21 17:02:02.840 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 17:02:02.841 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:02:02.843 +08:00 [INF] Successfully validated the token. +2021-08-21 17:02:02.865 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:02:02.865 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:02:02.866 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 25.2057ms +2021-08-21 17:02:02.941 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 17:02:02.942 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:02:02.942 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.6293ms +2021-08-21 17:02:02.944 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:02:02.944 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:02:02.947 +08:00 [INF] Successfully validated the token. +2021-08-21 17:02:02.949 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:02:02.949 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:02:03.002 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:02:03.004 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 55.6644ms +2021-08-21 17:02:03.005 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:02:03.013 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:02:03.046 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:02:03.046 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:02:03.047 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 102.5709ms +2021-08-21 17:02:05.211 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 17:02:05.211 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:02:05.212 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4876ms +2021-08-21 17:02:05.213 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 17:02:05.214 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:02:05.216 +08:00 [INF] Successfully validated the token. +2021-08-21 17:02:05.237 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:02:05.237 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:02:05.237 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 23.7643ms +2021-08-21 17:02:05.286 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:02:05.286 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:02:05.288 +08:00 [INF] Successfully validated the token. +2021-08-21 17:02:05.290 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:02:05.290 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:02:05.340 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:02:05.342 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 52.0509ms +2021-08-21 17:02:05.342 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:02:05.349 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:02:05.375 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:02:05.375 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:02:05.376 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 89.8480ms +2021-08-21 17:02:06.502 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 17:02:06.502 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:02:06.502 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4425ms +2021-08-21 17:02:06.504 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 17:02:06.504 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:02:06.506 +08:00 [INF] Successfully validated the token. +2021-08-21 17:02:06.541 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:02:06.541 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:02:06.542 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 37.9313ms +2021-08-21 17:02:06.615 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:02:06.615 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:02:06.618 +08:00 [INF] Successfully validated the token. +2021-08-21 17:02:06.619 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:02:06.619 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:02:06.668 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:02:06.670 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 50.6939ms +2021-08-21 17:02:06.670 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:02:06.676 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:02:06.705 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:02:06.705 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:02:06.705 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 90.2321ms +2021-08-21 17:02:08.202 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 17:02:08.202 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:02:08.202 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6277ms +2021-08-21 17:02:08.204 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 17:02:08.204 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:02:08.207 +08:00 [INF] Successfully validated the token. +2021-08-21 17:02:08.230 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:02:08.230 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:02:08.230 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 25.9678ms +2021-08-21 17:02:08.287 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 17:02:08.288 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:02:08.288 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.6146ms +2021-08-21 17:02:08.290 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:02:08.290 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:02:08.292 +08:00 [INF] Successfully validated the token. +2021-08-21 17:02:08.294 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:02:08.294 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:02:08.417 +08:00 [ERR] An error occurred using the connection to database 'CompanyNameProjectNameDB' on server 'localhost'. +2021-08-21 17:02:08.460 +08:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +{ + "code": null, + "message": "\u5BF9\u4E0D\u8D77,\u5728\u5904\u7406\u4F60\u7684\u8BF7\u6C42\u671F\u95F4,\u4EA7\u751F\u4E86\u4E00\u4E2A\u670D\u52A1\u5668\u5185\u90E8\u9519\u8BEF!", + "details": null, + "data": {}, + "validationErrors": null +} + +2021-08-21 17:02:08.460 +08:00 [ERR] The operation was canceled. +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.ConnectionPool.GetSessionAsync(MySqlConnection connection, Int32 startTickCount, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/ConnectionPool.cs:line 24 + at MySqlConnector.MySqlConnection.CreateSessionAsync(ConnectionPool pool, Int32 startTickCount, Nullable`1 ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlConnection.cs:line 846 + at MySqlConnector.MySqlConnection.OpenAsync(Nullable`1 ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlConnection.cs:line 410 + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenInternalAsync(Boolean errorsExpected, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenInternalAsync(Boolean errorsExpected, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenAsync(CancellationToken cancellationToken, Boolean errorsExpected) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlRelationalConnection.OpenAsync(CancellationToken cancellationToken, Boolean errorsExpected) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.BeginTransactionAsync(IsolationLevel isolationLevel, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.BeginTransactionAsync(CancellationToken cancellationToken) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextWithTransactionAsync(IUnitOfWork unitOfWork) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextAsync(IUnitOfWork unitOfWork) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextAsync(IUnitOfWork unitOfWork, String connectionStringName, String connectionString) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.GetDbContextAsync() + at Volo.Abp.Domain.Repositories.EntityFrameworkCore.EfCoreRepository`2.GetDbSetAsync() + at Volo.Abp.IdentityServer.Clients.ClientRepository.GetListAsync(String sorting, Int32 skipCount, Int32 maxResultCount, String filter, Boolean includeDetails, CancellationToken cancellationToken) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at CompanyName.ProjectName.IdentityServers.Clients.IdentityServerClientAppService.GetListAsync(PagingClientListInput input) in D:\abp\aspnet-core\services\src\CompanyName.ProjectName.Application\IdentityServers\Clients\IdentityServerClientAppService.cs:line 22 + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.GlobalFeatures.GlobalFeatureInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Auditing.AuditingInterceptor.ProceedByLoggingAsync(IAbpMethodInvocation invocation, IAuditingHelper auditingHelper, IAuditLogScope auditLogScope) + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Validation.ValidationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at lambda_method3160(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync() +--- End of stack trace from previous location --- + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) +2021-08-21 17:02:08.460 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2021-08-21 17:02:08.460 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 166.048ms +2021-08-21 17:02:08.460 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:02:08.548 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:02:08.548 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:02:08.548 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 500 - application/json;+charset=utf-8 258.5546ms +2021-08-21 17:02:09.335 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 17:02:09.335 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:02:09.335 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4594ms +2021-08-21 17:02:09.337 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 17:02:09.337 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:02:09.339 +08:00 [INF] Successfully validated the token. +2021-08-21 17:02:09.360 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:02:09.360 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:02:09.360 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 23.3460ms +2021-08-21 17:02:09.431 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:02:09.432 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:02:09.435 +08:00 [INF] Successfully validated the token. +2021-08-21 17:02:09.436 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:02:09.437 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:02:09.484 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:02:09.486 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 49.1245ms +2021-08-21 17:02:09.486 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:02:09.492 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:02:09.518 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:02:09.518 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:02:09.518 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 86.8881ms +2021-08-21 17:02:29.136 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:02:41.757 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 17:02:48.979 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 17:02:48.980 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:02:48.980 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4828ms +2021-08-21 17:02:48.982 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 17:02:48.982 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:02:48.984 +08:00 [INF] Successfully validated the token. +2021-08-21 17:02:49.005 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:02:49.005 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:02:49.005 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 23.2116ms +2021-08-21 17:02:49.121 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 17:02:49.121 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:02:49.121 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.5274ms +2021-08-21 17:02:49.123 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:02:49.123 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:02:49.126 +08:00 [INF] Successfully validated the token. +2021-08-21 17:02:49.129 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:02:49.129 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:02:49.137 +08:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +{ + "code": null, + "message": "\u5BF9\u4E0D\u8D77,\u5728\u5904\u7406\u4F60\u7684\u8BF7\u6C42\u671F\u95F4,\u4EA7\u751F\u4E86\u4E00\u4E2A\u670D\u52A1\u5668\u5185\u90E8\u9519\u8BEF!", + "details": null, + "data": {}, + "validationErrors": null +} + +2021-08-21 17:02:49.137 +08:00 [ERR] Unexpected end of request content. +Microsoft.AspNetCore.Server.Kestrel.Core.BadHttpRequestException: Unexpected end of request content. + at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelBadHttpRequestException.Throw(RequestRejectionReason reason) + at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.Http1MessageBody.ThrowUnexpectedEndOfRequestContent() + at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.Http1ContentLengthMessageBody.ReadAsyncInternal(CancellationToken cancellationToken) + at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpRequestStream.ReadAsyncInternal(Memory`1 destination, CancellationToken cancellationToken) + at System.Text.Json.JsonSerializer.ReadAsync[TValue](Stream utf8Json, Type returnType, JsonSerializerOptions options, CancellationToken cancellationToken) + at Microsoft.AspNetCore.Mvc.Formatters.SystemTextJsonInputFormatter.ReadRequestBodyAsync(InputFormatterContext context, Encoding encoding) + at Microsoft.AspNetCore.Mvc.Formatters.SystemTextJsonInputFormatter.ReadRequestBodyAsync(InputFormatterContext context, Encoding encoding) + at Volo.Abp.AspNetCore.Mvc.Json.AbpHybridJsonInputFormatter.ReadRequestBodyAsync(InputFormatterContext context, Encoding encoding) + at Microsoft.AspNetCore.Mvc.ModelBinding.Binders.BodyModelBinder.BindModelAsync(ModelBindingContext bindingContext) + at Microsoft.AspNetCore.Mvc.ModelBinding.ParameterBinder.BindModelAsync(ActionContext actionContext, IModelBinder modelBinder, IValueProvider valueProvider, ParameterDescriptor parameter, ModelMetadata metadata, Object value, Object container) + at Microsoft.AspNetCore.Mvc.Controllers.ControllerBinderDelegateProvider.<>c__DisplayClass0_0.<g__Bind|0>d.MoveNext() +--- End of stack trace from previous location --- + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) +2021-08-21 17:02:49.138 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2021-08-21 17:02:49.138 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 8.7484ms +2021-08-21 17:02:49.138 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:02:49.162 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:02:49.162 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:02:49.163 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 500 - application/json;+charset=utf-8 39.6526ms +2021-08-21 17:02:50.280 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 17:02:50.280 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:02:50.280 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4268ms +2021-08-21 17:02:50.282 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 17:02:50.282 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:02:50.284 +08:00 [INF] Successfully validated the token. +2021-08-21 17:02:50.315 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:02:50.315 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:02:50.315 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 33.2453ms +2021-08-21 17:02:50.356 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:02:50.356 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:02:50.359 +08:00 [INF] Successfully validated the token. +2021-08-21 17:02:50.360 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:02:50.360 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:02:50.410 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:02:50.412 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 51.7983ms +2021-08-21 17:02:50.412 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:02:50.418 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:02:50.444 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:02:50.444 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:02:50.444 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 88.1725ms +2021-08-21 17:02:59.161 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:02:59.624 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 17:02:59.624 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:02:59.624 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5571ms +2021-08-21 17:02:59.626 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 17:02:59.626 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:02:59.629 +08:00 [INF] Successfully validated the token. +2021-08-21 17:02:59.650 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:02:59.650 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:02:59.651 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 24.4522ms +2021-08-21 17:02:59.704 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 17:02:59.705 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:02:59.705 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4600ms +2021-08-21 17:02:59.707 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:02:59.707 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:02:59.709 +08:00 [INF] Successfully validated the token. +2021-08-21 17:02:59.710 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:02:59.710 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:02:59.758 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:02:59.760 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 49.1367ms +2021-08-21 17:02:59.760 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:02:59.770 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:02:59.794 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:02:59.794 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:02:59.794 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 87.7630ms +2021-08-21 17:03:29.226 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:03:59.257 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:04:18.396 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 17:04:29.275 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:04:34.737 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 17:04:34.738 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:04:34.738 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5566ms +2021-08-21 17:04:34.740 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 17:04:34.740 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:04:34.743 +08:00 [INF] Successfully validated the token. +2021-08-21 17:04:34.764 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:04:34.764 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:04:34.765 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 24.9481ms +2021-08-21 17:04:34.878 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 17:04:34.878 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:04:34.878 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4595ms +2021-08-21 17:04:34.880 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:04:34.880 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:04:34.883 +08:00 [INF] Successfully validated the token. +2021-08-21 17:04:34.884 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:04:34.884 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:04:34.933 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:04:34.935 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 50.2681ms +2021-08-21 17:04:34.935 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:04:34.942 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:04:34.967 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:04:34.967 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:04:34.967 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 87.5744ms +2021-08-21 17:04:35.726 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 17:04:39.874 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 17:04:39.875 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:04:39.875 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4532ms +2021-08-21 17:04:39.877 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 17:04:39.877 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:04:39.879 +08:00 [INF] Successfully validated the token. +2021-08-21 17:04:39.899 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:04:39.899 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:04:39.899 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 22.6919ms +2021-08-21 17:04:39.962 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 17:04:39.962 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:04:39.963 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4727ms +2021-08-21 17:04:39.964 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:04:39.965 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:04:39.967 +08:00 [INF] Successfully validated the token. +2021-08-21 17:04:39.969 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:04:39.969 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:04:40.022 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:04:40.024 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 55.334ms +2021-08-21 17:04:40.024 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:04:40.032 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:04:40.058 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:04:40.058 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:04:40.059 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 94.2087ms +2021-08-21 17:04:43.652 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 17:04:43.653 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:04:43.653 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4811ms +2021-08-21 17:04:43.655 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 17:04:43.655 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:04:43.657 +08:00 [INF] Successfully validated the token. +2021-08-21 17:04:43.677 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:04:43.677 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:04:43.677 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 22.3479ms +2021-08-21 17:04:43.780 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:04:43.780 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:04:43.783 +08:00 [INF] Successfully validated the token. +2021-08-21 17:04:43.785 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:04:43.785 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:04:43.832 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:04:43.834 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 49.3433ms +2021-08-21 17:04:43.834 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:04:43.841 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:04:43.872 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:04:43.872 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:04:43.873 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 93.2736ms +2021-08-21 17:04:53.559 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 17:04:59.037 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 17:04:59.037 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:04:59.038 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6489ms +2021-08-21 17:04:59.040 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 17:04:59.040 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:04:59.044 +08:00 [INF] Successfully validated the token. +2021-08-21 17:04:59.067 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:04:59.067 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:04:59.067 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 27.1564ms +2021-08-21 17:04:59.144 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 17:04:59.144 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:04:59.144 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.6311ms +2021-08-21 17:04:59.147 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:04:59.147 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:04:59.150 +08:00 [INF] Successfully validated the token. +2021-08-21 17:04:59.151 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:04:59.152 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:04:59.202 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:04:59.204 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 52.4056ms +2021-08-21 17:04:59.204 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:04:59.212 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:04:59.239 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:04:59.239 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:04:59.239 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 92.3629ms +2021-08-21 17:04:59.310 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:05:01.049 +08:00 [DBG] 420 recurring job(s) processed by scheduler. +2021-08-21 17:05:14.904 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 17:05:14.904 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:05:14.905 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6171ms +2021-08-21 17:05:14.906 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 17:05:14.907 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:05:14.909 +08:00 [INF] Successfully validated the token. +2021-08-21 17:05:14.943 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:05:14.943 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:05:14.944 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 37.5608ms +2021-08-21 17:05:15.026 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 17:05:15.026 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:05:15.026 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4355ms +2021-08-21 17:05:15.027 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:05:15.028 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:05:15.030 +08:00 [INF] Successfully validated the token. +2021-08-21 17:05:15.031 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:05:15.031 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:05:15.078 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:05:15.081 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 49.3561ms +2021-08-21 17:05:15.081 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:05:15.088 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:05:15.125 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:05:15.125 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:05:15.126 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 98.2956ms +2021-08-21 17:05:16.645 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 17:05:16.645 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:05:16.646 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4559ms +2021-08-21 17:05:16.647 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 17:05:16.647 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:05:16.650 +08:00 [INF] Successfully validated the token. +2021-08-21 17:05:16.671 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:05:16.672 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:05:16.672 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 24.7324ms +2021-08-21 17:05:16.725 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:05:16.725 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:05:16.729 +08:00 [INF] Successfully validated the token. +2021-08-21 17:05:16.730 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:05:16.730 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:05:16.781 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:05:16.783 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 52.4899ms +2021-08-21 17:05:16.783 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:05:16.790 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:05:16.819 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:05:16.820 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:05:16.820 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 94.7347ms +2021-08-21 17:05:29.348 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:05:59.375 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:06:29.392 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:06:32.815 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 17:06:50.315 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 17:06:59.406 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:07:01.059 +08:00 [DBG] 615 recurring job(s) processed by scheduler. +2021-08-21 17:07:29.440 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:07:41.772 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 17:07:59.469 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:08:29.484 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:08:30.570 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/abp/Swashbuckle/SetCsrfCookie application/json - +2021-08-21 17:08:30.575 +08:00 [INF] Executing endpoint 'Volo.Abp.Swashbuckle.AbpSwashbuckleController.SetCsrfCookie (Volo.Abp.Swashbuckle)' +2021-08-21 17:08:30.577 +08:00 [INF] Route matched with {area = "Abp", action = "SetCsrfCookie", controller = "AbpSwashbuckle", page = ""}. Executing controller action with signature Void SetCsrfCookie() on controller Volo.Abp.Swashbuckle.AbpSwashbuckleController (Volo.Abp.Swashbuckle). +2021-08-21 17:08:30.602 +08:00 [WRN] The cookie 'XSRF-TOKEN' has set 'SameSite=None' and must also set 'Secure'. +2021-08-21 17:08:30.603 +08:00 [INF] Executed action Volo.Abp.Swashbuckle.AbpSwashbuckleController.SetCsrfCookie (Volo.Abp.Swashbuckle) in 25.5256ms +2021-08-21 17:08:30.603 +08:00 [INF] Executed endpoint 'Volo.Abp.Swashbuckle.AbpSwashbuckleController.SetCsrfCookie (Volo.Abp.Swashbuckle)' +2021-08-21 17:08:30.603 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/abp/Swashbuckle/SetCsrfCookie application/json - - 204 - - 32.8393ms +2021-08-21 17:08:30.716 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 2 +2021-08-21 17:08:30.720 +08:00 [INF] CORS policy execution failed. +2021-08-21 17:08:30.720 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-08-21 17:08:30.724 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:08:30.724 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:08:30.769 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:08:30.771 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 47.0132ms +2021-08-21 17:08:30.771 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:08:30.777 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:08:30.802 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:08:30.802 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:08:30.802 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 2 - 200 - application/json;+charset=utf-8 86.0350ms +2021-08-21 17:08:33.174 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 17:08:49.368 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 17:08:59.504 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:09:01.047 +08:00 [DBG] 687 recurring job(s) processed by scheduler. +2021-08-21 17:09:29.525 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:09:59.558 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:10:29.589 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:10:48.009 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 17:10:59.613 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:11:01.054 +08:00 [DBG] 737 recurring job(s) processed by scheduler. +2021-08-21 17:11:29.632 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:11:34.497 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 17:11:34.497 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:11:34.497 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4697ms +2021-08-21 17:11:34.499 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:11:34.499 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:11:34.501 +08:00 [INF] Successfully validated the token. +2021-08-21 17:11:34.503 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:11:34.503 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:11:34.547 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:11:34.549 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 45.9067ms +2021-08-21 17:11:34.549 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:11:34.554 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:11:34.579 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:11:34.579 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:11:34.579 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 80.1655ms +2021-08-21 17:11:59.656 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:12:01.220 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 17:12:01.220 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:12:01.220 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5555ms +2021-08-21 17:12:01.222 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 17:12:01.222 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:12:01.225 +08:00 [INF] Successfully validated the token. +2021-08-21 17:12:01.245 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:12:01.245 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:12:01.245 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 23.0760ms +2021-08-21 17:12:01.322 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 17:12:01.323 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:12:01.323 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.5361ms +2021-08-21 17:12:01.324 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:12:01.325 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:12:01.327 +08:00 [INF] Successfully validated the token. +2021-08-21 17:12:01.328 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:12:01.329 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:12:01.376 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:12:01.381 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 52.1837ms +2021-08-21 17:12:01.381 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:12:01.391 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:12:01.425 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:12:01.425 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:12:01.425 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 100.6119ms +2021-08-21 17:12:29.689 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:12:41.789 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 17:12:59.712 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:13:01.047 +08:00 [DBG] 898 recurring job(s) processed by scheduler. +2021-08-21 17:13:29.745 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:13:59.769 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:14:29.786 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:14:59.799 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:15:01.057 +08:00 [DBG] 912 recurring job(s) processed by scheduler. +2021-08-21 17:15:29.829 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:15:40.110 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 17:15:40.110 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:15:40.110 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5012ms +2021-08-21 17:15:40.113 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 17:15:40.113 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:15:40.117 +08:00 [INF] Successfully validated the token. +2021-08-21 17:15:40.153 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:15:40.153 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:15:40.154 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 40.7380ms +2021-08-21 17:15:40.249 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 17:15:40.250 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:15:40.250 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.6364ms +2021-08-21 17:15:40.252 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:15:40.253 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:15:40.256 +08:00 [INF] Successfully validated the token. +2021-08-21 17:15:40.258 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:15:40.258 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:15:40.312 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:15:40.313 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 55.1516ms +2021-08-21 17:15:40.314 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:15:40.322 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:15:40.354 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:15:40.354 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:15:40.355 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 102.3328ms +2021-08-21 17:15:56.936 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 17:15:56.936 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:15:56.936 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6499ms +2021-08-21 17:15:56.938 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 17:15:56.939 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:15:56.941 +08:00 [INF] Successfully validated the token. +2021-08-21 17:15:56.972 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:15:56.972 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:15:56.973 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 34.3185ms +2021-08-21 17:15:57.045 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 17:15:57.046 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:15:57.046 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.6151ms +2021-08-21 17:15:57.048 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:15:57.048 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:15:57.051 +08:00 [INF] Successfully validated the token. +2021-08-21 17:15:57.052 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:15:57.052 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:15:57.099 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:15:57.100 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 48.0712ms +2021-08-21 17:15:57.101 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:15:57.108 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:15:57.137 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:15:57.138 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:15:57.138 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 90.1865ms +2021-08-21 17:15:59.840 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:16:29.858 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:16:59.865 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:17:01.302 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 17:17:29.886 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:17:41.796 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 17:17:59.895 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:18:29.918 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:18:59.950 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:19:01.620 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 17:19:29.969 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:20:00.002 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:20:30.019 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:21:00.044 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:21:30.066 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:21:32.321 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 17:21:47.873 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 17:22:00.078 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:22:01.043 +08:00 [DBG] 850 recurring job(s) processed by scheduler. +2021-08-21 17:22:30.126 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:22:40.518 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-08-21 17:22:40.520 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-08-21 17:22:40.528 +08:00 [DBG] removed records count=2 +2021-08-21 17:22:41.545 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-08-21 17:22:41.563 +08:00 [DBG] removed records count=0 +2021-08-21 17:22:41.563 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-08-21 17:22:41.564 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-08-21 17:22:41.575 +08:00 [DBG] removed records count=73 +2021-08-21 17:22:41.793 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 17:22:42.586 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-08-21 17:22:42.606 +08:00 [DBG] removed records count=0 +2021-08-21 17:22:42.606 +08:00 [DBG] Removing outdated records from table 'List'... +2021-08-21 17:22:42.607 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-08-21 17:22:42.614 +08:00 [DBG] removed records count=0 +2021-08-21 17:22:42.614 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-08-21 17:22:42.615 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-08-21 17:22:42.622 +08:00 [DBG] removed records count=0 +2021-08-21 17:22:42.622 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-08-21 17:22:42.623 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-08-21 17:22:42.629 +08:00 [DBG] removed records count=0 +2021-08-21 17:23:00.166 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:23:30.172 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:23:31.612 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 17:23:47.068 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 17:24:00.187 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:24:01.049 +08:00 [DBG] 906 recurring job(s) processed by scheduler. +2021-08-21 17:24:30.208 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:25:00.234 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:25:30.268 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:25:49.060 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 17:26:00.285 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:26:01.042 +08:00 [DBG] 724 recurring job(s) processed by scheduler. +2021-08-21 17:26:30.305 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:27:00.338 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:27:30.373 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:27:41.789 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 17:27:47.797 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 17:28:00.382 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:28:01.045 +08:00 [DBG] 792 recurring job(s) processed by scheduler. +2021-08-21 17:28:30.396 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:29:00.422 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:29:30.444 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:30:00.453 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:30:01.048 +08:00 [DBG] 953 recurring job(s) processed by scheduler. +2021-08-21 17:30:30.486 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:31:00.517 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:31:30.560 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:31:35.109 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 17:31:35.109 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:31:35.110 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6341ms +2021-08-21 17:31:35.115 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 17:31:35.115 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:31:35.117 +08:00 [INF] Successfully validated the token. +2021-08-21 17:31:35.151 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:31:35.151 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:31:35.151 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 36.3106ms +2021-08-21 17:31:35.224 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 17:31:35.225 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:31:35.225 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.6717ms +2021-08-21 17:31:35.227 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:31:35.227 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:31:35.229 +08:00 [INF] Successfully validated the token. +2021-08-21 17:31:35.231 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:31:35.231 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:31:35.280 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:31:35.282 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 51.1317ms +2021-08-21 17:31:35.282 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:31:35.291 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:31:35.322 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:31:35.322 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:31:35.323 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 95.8104ms +2021-08-21 17:32:00.577 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:32:01.058 +08:00 [DBG] 870 recurring job(s) processed by scheduler. +2021-08-21 17:32:30.607 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:32:41.793 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 17:33:00.635 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:33:30.661 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:34:00.678 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:34:01.382 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 17:34:30.700 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:35:00.716 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:35:30.739 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:36:00.748 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:36:17.790 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 17:36:30.770 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:36:36.875 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 17:36:43.823 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 17:36:43.823 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:36:43.824 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.7784ms +2021-08-21 17:36:43.830 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 17:36:43.830 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:36:43.834 +08:00 [INF] Successfully validated the token. +2021-08-21 17:36:43.857 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:36:43.857 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:36:43.858 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 27.8207ms +2021-08-21 17:36:43.937 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 17:36:43.938 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:36:43.938 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.5227ms +2021-08-21 17:36:43.940 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:36:43.940 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:36:43.944 +08:00 [INF] Successfully validated the token. +2021-08-21 17:36:43.945 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:36:43.946 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:36:44.005 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:36:44.008 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 61.7975ms +2021-08-21 17:36:44.008 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:36:44.020 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:36:44.047 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:36:44.047 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:36:44.048 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 108.0773ms +2021-08-21 17:36:56.579 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 17:36:57.580 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 17:36:57.581 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:36:57.581 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 1.1397ms +2021-08-21 17:36:57.584 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 17:36:57.585 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:36:57.588 +08:00 [INF] Successfully validated the token. +2021-08-21 17:36:57.609 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:36:57.609 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:36:57.609 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 24.6198ms +2021-08-21 17:36:57.758 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 17:36:57.758 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:36:57.759 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.6635ms +2021-08-21 17:36:57.761 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:36:57.762 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:36:57.766 +08:00 [INF] Successfully validated the token. +2021-08-21 17:36:57.768 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:36:57.768 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:36:57.822 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:36:57.824 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 56.2369ms +2021-08-21 17:36:57.825 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:36:57.835 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:36:57.862 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:36:57.862 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:36:57.862 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 101.0982ms +2021-08-21 17:37:00.840 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:37:01.096 +08:00 [DBG] 190 recurring job(s) processed by scheduler. +2021-08-21 17:37:01.525 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 17:37:01.526 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:37:01.526 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5659ms +2021-08-21 17:37:01.528 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 17:37:01.528 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:37:01.530 +08:00 [INF] Successfully validated the token. +2021-08-21 17:37:01.552 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:37:01.552 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:37:01.552 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 24.4049ms +2021-08-21 17:37:01.679 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:37:01.679 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:37:01.682 +08:00 [INF] Successfully validated the token. +2021-08-21 17:37:01.684 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:37:01.684 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:37:01.739 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:37:01.742 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 57.7419ms +2021-08-21 17:37:01.742 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:37:01.749 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:37:01.774 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:37:01.774 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:37:01.775 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 95.9702ms +2021-08-21 17:37:06.506 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 17:37:06.506 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:37:06.507 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5285ms +2021-08-21 17:37:06.509 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 17:37:06.509 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:37:06.512 +08:00 [INF] Successfully validated the token. +2021-08-21 17:37:06.546 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:37:06.546 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:37:06.546 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 37.5225ms +2021-08-21 17:37:06.658 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 17:37:06.658 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:37:06.658 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.5522ms +2021-08-21 17:37:06.660 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:37:06.661 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:37:06.663 +08:00 [INF] Successfully validated the token. +2021-08-21 17:37:06.665 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:37:06.665 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:37:06.716 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:37:06.718 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 53.2622ms +2021-08-21 17:37:06.719 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:37:06.728 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:37:06.758 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:37:06.758 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:37:06.758 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 97.6062ms +2021-08-21 17:37:09.992 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 17:37:09.993 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:37:09.993 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5496ms +2021-08-21 17:37:09.995 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 17:37:09.995 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:37:09.997 +08:00 [INF] Successfully validated the token. +2021-08-21 17:37:10.031 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:37:10.031 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:37:10.031 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 36.2058ms +2021-08-21 17:37:10.141 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:37:10.142 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:37:10.144 +08:00 [INF] Successfully validated the token. +2021-08-21 17:37:10.145 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:37:10.145 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:37:10.196 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:37:10.199 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 53.1789ms +2021-08-21 17:37:10.199 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:37:10.207 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:37:10.234 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:37:10.234 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:37:10.234 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 93.0447ms +2021-08-21 17:37:20.742 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 17:37:20.742 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:37:20.743 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6712ms +2021-08-21 17:37:20.745 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 17:37:20.746 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:37:20.750 +08:00 [INF] Successfully validated the token. +2021-08-21 17:37:20.812 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:37:20.812 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:37:20.812 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 66.7991ms +2021-08-21 17:37:20.943 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 17:37:20.943 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:37:20.943 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4306ms +2021-08-21 17:37:20.945 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:37:20.945 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:37:20.948 +08:00 [INF] Successfully validated the token. +2021-08-21 17:37:20.950 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:37:20.950 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:37:21.000 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:37:21.002 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 51.4261ms +2021-08-21 17:37:21.002 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:37:21.008 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:37:21.035 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:37:21.035 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:37:21.035 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 90.7914ms +2021-08-21 17:37:30.858 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:37:35.172 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 17:37:35.172 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:37:35.173 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6352ms +2021-08-21 17:37:35.175 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 17:37:35.176 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:37:35.178 +08:00 [INF] Successfully validated the token. +2021-08-21 17:37:35.211 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:37:35.211 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:37:35.212 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 36.5953ms +2021-08-21 17:37:35.304 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 17:37:35.305 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:37:35.305 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.6241ms +2021-08-21 17:37:35.308 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:37:35.308 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:37:35.311 +08:00 [INF] Successfully validated the token. +2021-08-21 17:37:35.313 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:37:35.314 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:37:35.362 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:37:35.364 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 50.663ms +2021-08-21 17:37:35.364 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:37:35.373 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:37:35.402 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:37:35.402 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:37:35.403 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 94.9312ms +2021-08-21 17:37:41.841 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 17:37:42.412 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 17:37:42.413 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:37:42.413 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4643ms +2021-08-21 17:37:42.414 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 17:37:42.415 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:37:42.417 +08:00 [INF] Successfully validated the token. +2021-08-21 17:37:42.452 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:37:42.452 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:37:42.453 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 38.0468ms +2021-08-21 17:37:43.053 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 17:37:43.054 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:37:43.054 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 1.0537ms +2021-08-21 17:37:43.056 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:37:43.057 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:37:43.059 +08:00 [INF] Successfully validated the token. +2021-08-21 17:37:43.060 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:37:43.060 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:37:43.106 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:37:43.108 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 47.5701ms +2021-08-21 17:37:43.108 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:37:43.114 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:37:43.138 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:37:43.139 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:37:43.139 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 82.5514ms +2021-08-21 17:37:51.647 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 17:37:51.647 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:37:51.647 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5081ms +2021-08-21 17:37:51.650 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 17:37:51.650 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:37:51.653 +08:00 [INF] Successfully validated the token. +2021-08-21 17:37:51.674 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:37:51.674 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:37:51.674 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 24.6815ms +2021-08-21 17:37:51.949 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 17:37:51.949 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:37:51.950 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4797ms +2021-08-21 17:37:51.952 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:37:51.952 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:37:51.955 +08:00 [INF] Successfully validated the token. +2021-08-21 17:37:51.956 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:37:51.956 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:37:52.002 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:37:52.004 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 48.1987ms +2021-08-21 17:37:52.004 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:37:52.011 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:37:52.047 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:37:52.047 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:37:52.047 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 95.5523ms +2021-08-21 17:37:59.943 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 17:37:59.943 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:37:59.943 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4242ms +2021-08-21 17:37:59.945 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:37:59.945 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:37:59.947 +08:00 [INF] Successfully validated the token. +2021-08-21 17:37:59.948 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:37:59.949 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:37:59.992 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:37:59.994 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 45.0682ms +2021-08-21 17:37:59.994 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:37:59.999 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:38:00.022 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:38:00.022 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:38:00.022 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 77.0374ms +2021-08-21 17:38:00.911 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:38:30.925 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:38:30.979 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 17:38:30.979 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:38:30.979 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4651ms +2021-08-21 17:38:30.981 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:38:30.981 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:38:30.984 +08:00 [INF] Successfully validated the token. +2021-08-21 17:38:30.985 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:38:30.986 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:38:31.036 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:38:31.037 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 51.6622ms +2021-08-21 17:38:31.037 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:38:31.044 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:38:31.066 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:38:31.066 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:38:31.066 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 85.2775ms +2021-08-21 17:38:33.938 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:38:33.938 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:38:33.941 +08:00 [INF] Successfully validated the token. +2021-08-21 17:38:33.942 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:38:33.942 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:38:33.988 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:38:33.990 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 47.4808ms +2021-08-21 17:38:33.990 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:38:33.996 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:38:34.017 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:38:34.017 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:38:34.018 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 79.4439ms +2021-08-21 17:38:34.239 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 17:38:39.942 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 17:38:39.943 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:38:39.943 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4474ms +2021-08-21 17:38:39.945 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:38:39.945 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:38:39.947 +08:00 [INF] Successfully validated the token. +2021-08-21 17:38:39.948 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:38:39.949 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:38:40.016 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:38:40.017 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 68.2792ms +2021-08-21 17:38:40.017 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:38:40.024 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:38:40.046 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:38:40.046 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:38:40.046 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 101.5085ms +2021-08-21 17:38:51.182 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 17:38:51.955 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 17:38:51.956 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:38:51.956 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.6543ms +2021-08-21 17:38:51.958 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:38:51.958 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:38:51.961 +08:00 [INF] Successfully validated the token. +2021-08-21 17:38:51.962 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:38:51.962 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:38:52.010 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:38:52.011 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 48.8122ms +2021-08-21 17:38:52.011 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:38:52.018 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:38:52.042 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:38:52.042 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:38:52.042 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 83.8181ms +2021-08-21 17:39:01.047 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:39:01.048 +08:00 [DBG] 570 recurring job(s) processed by scheduler. +2021-08-21 17:39:01.951 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 17:39:01.951 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:39:01.951 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4466ms +2021-08-21 17:39:01.954 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:39:01.954 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:39:01.956 +08:00 [INF] Successfully validated the token. +2021-08-21 17:39:01.957 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:39:01.958 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:39:02.003 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:39:02.004 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 46.2662ms +2021-08-21 17:39:02.004 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:39:02.010 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:39:02.033 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:39:02.033 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:39:02.033 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 79.6935ms +2021-08-21 17:39:07.942 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 17:39:07.942 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:39:07.942 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4203ms +2021-08-21 17:39:07.944 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:39:07.944 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:39:07.946 +08:00 [INF] Successfully validated the token. +2021-08-21 17:39:07.947 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:39:07.947 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:39:07.993 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:39:07.994 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 46.7567ms +2021-08-21 17:39:07.994 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:39:08.000 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:39:08.033 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:39:08.033 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:39:08.033 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 89.7775ms +2021-08-21 17:39:12.936 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:39:12.936 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:39:12.938 +08:00 [INF] Successfully validated the token. +2021-08-21 17:39:12.939 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:39:12.940 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:39:12.983 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:39:12.984 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 44.6636ms +2021-08-21 17:39:12.984 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:39:12.990 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:39:13.013 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:39:13.013 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:39:13.013 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 77.0538ms +2021-08-21 17:39:14.953 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 17:39:14.953 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:39:14.954 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4255ms +2021-08-21 17:39:14.955 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:39:14.956 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:39:14.958 +08:00 [INF] Successfully validated the token. +2021-08-21 17:39:14.959 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:39:14.959 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:39:15.002 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:39:15.004 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 44.807ms +2021-08-21 17:39:15.004 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:39:15.010 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:39:15.043 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:39:15.043 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:39:15.044 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 88.2268ms +2021-08-21 17:39:17.943 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:39:17.943 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:39:17.945 +08:00 [INF] Successfully validated the token. +2021-08-21 17:39:17.946 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:39:17.946 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:39:17.991 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:39:17.992 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 45.6219ms +2021-08-21 17:39:17.992 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:39:17.997 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:39:18.032 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:39:18.032 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:39:18.032 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 89.3506ms +2021-08-21 17:39:31.041 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 17:39:31.041 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:39:31.041 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4382ms +2021-08-21 17:39:31.043 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:39:31.043 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:39:31.046 +08:00 [INF] Successfully validated the token. +2021-08-21 17:39:31.047 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:39:31.047 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:39:31.091 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:39:31.092 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 45.1223ms +2021-08-21 17:39:31.092 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:39:31.098 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:39:31.131 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:39:31.131 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:39:31.131 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 87.8550ms +2021-08-21 17:39:31.169 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:39:55.820 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 17:39:55.821 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:39:55.821 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4737ms +2021-08-21 17:39:55.823 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 17:39:55.823 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:39:55.825 +08:00 [INF] Successfully validated the token. +2021-08-21 17:39:55.846 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:39:55.846 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:39:55.846 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 23.5749ms +2021-08-21 17:39:56.537 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 17:39:56.537 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:39:56.537 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4822ms +2021-08-21 17:39:56.539 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:39:56.539 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:39:56.542 +08:00 [INF] Successfully validated the token. +2021-08-21 17:39:56.543 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:39:56.544 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:39:56.587 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:39:56.589 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 45.2722ms +2021-08-21 17:39:56.589 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:39:56.595 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:39:56.619 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:39:56.619 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:39:56.619 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 80.2348ms +2021-08-21 17:40:01.116 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 17:40:01.116 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:40:01.116 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4406ms +2021-08-21 17:40:01.118 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 17:40:01.119 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:40:01.122 +08:00 [INF] Successfully validated the token. +2021-08-21 17:40:01.154 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:40:01.154 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:40:01.154 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 36.1544ms +2021-08-21 17:40:01.191 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:40:01.854 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 17:40:01.854 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:40:01.855 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.5038ms +2021-08-21 17:40:01.858 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:40:01.858 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:40:01.861 +08:00 [INF] Successfully validated the token. +2021-08-21 17:40:01.862 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:40:01.862 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:40:01.913 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:40:01.915 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 52.3687ms +2021-08-21 17:40:01.915 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:40:01.922 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:40:01.949 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:40:01.949 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:40:01.950 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 91.8503ms +2021-08-21 17:40:11.237 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 17:40:11.238 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:40:11.238 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.7708ms +2021-08-21 17:40:11.240 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 17:40:11.241 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:40:11.243 +08:00 [INF] Successfully validated the token. +2021-08-21 17:40:11.264 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:40:11.264 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:40:11.264 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 23.9258ms +2021-08-21 17:40:12.015 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 17:40:12.015 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:40:12.016 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.5011ms +2021-08-21 17:40:12.017 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:40:12.018 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:40:12.021 +08:00 [INF] Successfully validated the token. +2021-08-21 17:40:12.023 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:40:12.023 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:40:12.112 +08:00 [ERR] Failed executing DbCommand (65ms) [Parameters=[@__ef_filter__p_0='?' (DbType = Boolean), @__p_1='?' (DbType = Int32), @__p_0='?' (DbType = Int32)], CommandType='"Text"', CommandTimeout='30'] +SELECT `t`.`Id`, `t`.`AbsoluteRefreshTokenLifetime`, `t`.`AccessTokenLifetime`, `t`.`AccessTokenType`, `t`.`AllowAccessTokensViaBrowser`, `t`.`AllowOfflineAccess`, `t`.`AllowPlainTextPkce`, `t`.`AllowRememberConsent`, `t`.`AllowedIdentityTokenSigningAlgorithms`, `t`.`AlwaysIncludeUserClaimsInIdToken`, `t`.`AlwaysSendClientClaims`, `t`.`AuthorizationCodeLifetime`, `t`.`BackChannelLogoutSessionRequired`, `t`.`BackChannelLogoutUri`, `t`.`ClientClaimsPrefix`, `t`.`ClientId`, `t`.`ClientName`, `t`.`ClientUri`, `t`.`ConcurrencyStamp`, `t`.`ConsentLifetime`, `t`.`CreationTime`, `t`.`CreatorId`, `t`.`DeleterId`, `t`.`DeletionTime`, `t`.`Description`, `t`.`DeviceCodeLifetime`, `t`.`EnableLocalLogin`, `t`.`Enabled`, `t`.`ExtraProperties`, `t`.`FrontChannelLogoutSessionRequired`, `t`.`FrontChannelLogoutUri`, `t`.`IdentityTokenLifetime`, `t`.`IncludeJwtId`, `t`.`IsDeleted`, `t`.`LastModificationTime`, `t`.`LastModifierId`, `t`.`LogoUri`, `t`.`PairWiseSubjectSalt`, `t`.`ProtocolType`, `t`.`RefreshTokenExpiration`, `t`.`RefreshTokenUsage`, `t`.`RequireClientSecret`, `t`.`RequireConsent`, `t`.`RequirePkce`, `t`.`RequireRequestObject`, `t`.`SlidingRefreshTokenLifetime`, `t`.`UpdateAccessTokenClaimsOnRefresh`, `t`.`UserCodeType`, `t`.`UserSsoLifetime` +FROM ( + SELECT `i`.`Id`, `i`.`AbsoluteRefreshTokenLifetime`, `i`.`AccessTokenLifetime`, `i`.`AccessTokenType`, `i`.`AllowAccessTokensViaBrowser`, `i`.`AllowOfflineAccess`, `i`.`AllowPlainTextPkce`, `i`.`AllowRememberConsent`, `i`.`AllowedIdentityTokenSigningAlgorithms`, `i`.`AlwaysIncludeUserClaimsInIdToken`, `i`.`AlwaysSendClientClaims`, `i`.`AuthorizationCodeLifetime`, `i`.`BackChannelLogoutSessionRequired`, `i`.`BackChannelLogoutUri`, `i`.`ClientClaimsPrefix`, `i`.`ClientId`, `i`.`ClientName`, `i`.`ClientUri`, `i`.`ConcurrencyStamp`, `i`.`ConsentLifetime`, `i`.`CreationTime`, `i`.`CreatorId`, `i`.`DeleterId`, `i`.`DeletionTime`, `i`.`Description`, `i`.`DeviceCodeLifetime`, `i`.`EnableLocalLogin`, `i`.`Enabled`, `i`.`ExtraProperties`, `i`.`FrontChannelLogoutSessionRequired`, `i`.`FrontChannelLogoutUri`, `i`.`IdentityTokenLifetime`, `i`.`IncludeJwtId`, `i`.`IsDeleted`, `i`.`LastModificationTime`, `i`.`LastModifierId`, `i`.`LogoUri`, `i`.`PairWiseSubjectSalt`, `i`.`ProtocolType`, `i`.`RefreshTokenExpiration`, `i`.`RefreshTokenUsage`, `i`.`RequireClientSecret`, `i`.`RequireConsent`, `i`.`RequirePkce`, `i`.`RequireRequestObject`, `i`.`SlidingRefreshTokenLifetime`, `i`.`UpdateAccessTokenClaimsOnRefresh`, `i`.`UserCodeType`, `i`.`UserSsoLifetime` + FROM `IdentityServerClients` AS `i` + WHERE @__ef_filter__p_0 OR NOT (`i`.`IsDeleted`) + ORDER BY `i`.`CreationTime` + LIMIT @__p_1 OFFSET @__p_0 +) AS `t` +ORDER BY `t`.`CreationTime`, `t`.`Id` +2021-08-21 17:40:12.115 +08:00 [ERR] An exception occurred while iterating over the results of a query for context type 'Volo.Abp.IdentityServer.EntityFrameworkCore.IdentityServerDbContext'. +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 19 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 310 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 304 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.InitializeReaderAsync(DbContext _, Boolean result, CancellationToken cancellationToken) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.MoveNextAsync() +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 19 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 310 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 304 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.InitializeReaderAsync(DbContext _, Boolean result, CancellationToken cancellationToken) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.MoveNextAsync() +2021-08-21 17:40:12.284 +08:00 [ERR] An error occurred using a transaction. +2021-08-21 17:40:12.287 +08:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +{ + "code": null, + "message": "\u5BF9\u4E0D\u8D77,\u5728\u5904\u7406\u4F60\u7684\u8BF7\u6C42\u671F\u95F4,\u4EA7\u751F\u4E86\u4E00\u4E2A\u670D\u52A1\u5668\u5185\u90E8\u9519\u8BEF!", + "details": null, + "data": {}, + "validationErrors": null +} + +2021-08-21 17:40:12.287 +08:00 [ERR] The operation was canceled. +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 19 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 310 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 304 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.InitializeReaderAsync(DbContext _, Boolean result, CancellationToken cancellationToken) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.MoveNextAsync() + at Microsoft.EntityFrameworkCore.EntityFrameworkQueryableExtensions.ToListAsync[TSource](IQueryable`1 source, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.EntityFrameworkQueryableExtensions.ToListAsync[TSource](IQueryable`1 source, CancellationToken cancellationToken) + at Volo.Abp.IdentityServer.Clients.ClientRepository.GetListAsync(String sorting, Int32 skipCount, Int32 maxResultCount, String filter, Boolean includeDetails, CancellationToken cancellationToken) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at CompanyName.ProjectName.IdentityServers.Clients.IdentityServerClientAppService.GetListAsync(PagingClientListInput input) in D:\abp\aspnet-core\services\src\CompanyName.ProjectName.Application\IdentityServers\Clients\IdentityServerClientAppService.cs:line 22 + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.GlobalFeatures.GlobalFeatureInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Auditing.AuditingInterceptor.ProceedByLoggingAsync(IAbpMethodInvocation invocation, IAuditingHelper auditingHelper, IAuditLogScope auditLogScope) + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Validation.ValidationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at lambda_method3160(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) +2021-08-21 17:40:12.287 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2021-08-21 17:40:12.288 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 264.599ms +2021-08-21 17:40:12.288 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:40:12.378 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:40:12.379 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:40:12.379 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 500 - application/json;+charset=utf-8 361.6133ms +2021-08-21 17:40:14.411 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 17:40:14.411 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:40:14.411 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5797ms +2021-08-21 17:40:14.447 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 17:40:14.447 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:40:14.451 +08:00 [INF] Successfully validated the token. +2021-08-21 17:40:14.478 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:40:14.478 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:40:14.478 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 31.5075ms +2021-08-21 17:40:14.543 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:40:14.544 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:40:14.547 +08:00 [INF] Successfully validated the token. +2021-08-21 17:40:14.548 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:40:14.548 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:40:14.596 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:40:14.598 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 49.6812ms +2021-08-21 17:40:14.598 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:40:14.606 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:40:14.635 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:40:14.635 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:40:14.636 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 92.3172ms +2021-08-21 17:40:31.241 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:40:32.042 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 17:40:39.352 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/delete - - +2021-08-21 17:40:39.352 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:40:39.353 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/delete - - - 204 - - 0.4439ms +2021-08-21 17:40:39.354 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/delete application/json 45 +2021-08-21 17:40:39.354 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:40:39.357 +08:00 [INF] Successfully validated the token. +2021-08-21 17:40:39.358 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.DeleteAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:40:39.361 +08:00 [INF] Route matched with {action = "Delete", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task DeleteAsync(CompanyName.ProjectName.Publics.Dtos.IdInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:40:39.514 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.DeleteAsync (CompanyName.ProjectName.HttpApi) in 153.5202ms +2021-08-21 17:40:39.515 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.DeleteAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:40:39.578 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:40:39.578 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:40:39.624 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:40:39.625 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:40:39.625 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/delete application/json 45 - 204 - - 270.6825ms +2021-08-21 17:40:39.670 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 17:40:39.670 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:40:39.670 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4412ms +2021-08-21 17:40:39.672 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:40:39.673 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:40:39.676 +08:00 [INF] Successfully validated the token. +2021-08-21 17:40:39.677 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:40:39.678 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:40:39.726 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:40:39.727 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 49.1822ms +2021-08-21 17:40:39.727 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:40:39.733 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:40:39.754 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:40:39.754 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:40:39.754 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 81.9948ms +2021-08-21 17:40:43.986 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/delete application/json 45 +2021-08-21 17:40:43.986 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:40:43.988 +08:00 [INF] Successfully validated the token. +2021-08-21 17:40:43.990 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.DeleteAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:40:43.990 +08:00 [INF] Route matched with {action = "Delete", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task DeleteAsync(CompanyName.ProjectName.Publics.Dtos.IdInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:40:44.033 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.DeleteAsync (CompanyName.ProjectName.HttpApi) in 43.1267ms +2021-08-21 17:40:44.033 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.DeleteAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:40:44.047 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:40:44.047 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:40:44.074 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:40:44.074 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:40:44.074 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/delete application/json 45 - 204 - - 88.0677ms +2021-08-21 17:40:44.110 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:40:44.110 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:40:44.112 +08:00 [INF] Successfully validated the token. +2021-08-21 17:40:44.114 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:40:44.114 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:40:44.160 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:40:44.161 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 46.8911ms +2021-08-21 17:40:44.161 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:40:44.166 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:40:44.190 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:40:44.190 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:40:44.190 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 80.0515ms +2021-08-21 17:40:48.708 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 17:41:01.052 +08:00 [DBG] 786 recurring job(s) processed by scheduler. +2021-08-21 17:41:01.384 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:41:31.395 +08:00 [DBG] Server szqh003802a:26404:47ac0aeb heartbeat successfully sent +2021-08-21 17:41:44.539 +08:00 [INF] Starting CompanyName.ProjectName.HttpApi.Host. +2021-08-21 17:46:45.416 +08:00 [INF] Starting CompanyName.ProjectName.HttpApi.Host. +2021-08-21 17:46:50.221 +08:00 [INF] User profile is available. Using 'C:\Users\wangjun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. +2021-08-21 17:46:50.346 +08:00 [INF] Loaded ABP modules: +2021-08-21 17:46:50.346 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiHostModule +2021-08-21 17:46:50.346 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiModule +2021-08-21 17:46:50.346 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationContractsModule +2021-08-21 17:46:50.346 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainSharedModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainSharedModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.Data.AbpDataModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainSharedModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule +2021-08-21 17:46:50.346 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationContractsModule +2021-08-21 17:46:50.346 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainSharedModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule +2021-08-21 17:46:50.346 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.UI.AbpUiModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule +2021-08-21 17:46:50.347 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementHttpApiModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.Caching.StackExchangeRedis.AbpCachingStackExchangeRedisModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule +2021-08-21 17:46:50.347 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationModule +2021-08-21 17:46:50.347 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.PermissionManagement.IdentityServer.AbpPermissionManagementDomainIdentityServerModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule +2021-08-21 17:46:50.347 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule +2021-08-21 17:46:50.347 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainModule +2021-08-21 17:46:50.347 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainSharedModule +2021-08-21 17:46:50.347 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationModule +2021-08-21 17:46:50.347 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreDbMigrationsModule +2021-08-21 17:46:50.347 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.IdentityServer.EntityFrameworkCore.AbpIdentityServerEntityFrameworkCoreModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.MySQL.AbpEntityFrameworkCoreMySQLModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.BackgroundJobs.EntityFrameworkCore.AbpBackgroundJobsEntityFrameworkCoreModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule +2021-08-21 17:46:50.347 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.FreeSqlMySql.QueryManagementFreeSqlMySqlModule +2021-08-21 17:46:50.347 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.EntityFrameworkCore.DataDictionaryManagementEntityFrameworkCoreModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.BackgroundJobs.Hangfire.AbpBackgroundJobsHangfireModule +2021-08-21 17:46:50.347 +08:00 [INF] - Volo.Abp.Hangfire.AbpHangfireModule +2021-08-21 17:46:50.437 +08:00 [DBG] Started background worker: Volo.Abp.BackgroundJobs.BackgroundJobWorker +2021-08-21 17:46:50.441 +08:00 [DBG] Started background worker: Volo.Abp.IdentityServer.Tokens.TokenCleanupBackgroundWorker +2021-08-21 17:46:50.590 +08:00 [INF] DB tables already exist. Exit install +2021-08-21 17:46:50.604 +08:00 [INF] Starting Hangfire Server using job storage: 'Server: localhost@CompanyNameProjectNameHangfireDB' +2021-08-21 17:46:50.604 +08:00 [INF] Using the following options for SQL Server job storage: +2021-08-21 17:46:50.604 +08:00 [INF] Queue poll interval: 00:00:15. +2021-08-21 17:46:50.605 +08:00 [INF] Using the following options for Hangfire Server: + Worker count: 20 + Listening queues: 'default' + Shutdown timeout: 00:00:15 + Schedule polling interval: 00:00:15 +2021-08-21 17:46:50.625 +08:00 [DBG] Execution loop BackgroundServerProcess:a6bacffb has started in 4.9243 ms +2021-08-21 17:46:50.737 +08:00 [INF] Server szqh003802a:11564:eeaf7571 successfully announced in 101.2463 ms +2021-08-21 17:46:50.741 +08:00 [INF] Server szqh003802a:11564:eeaf7571 is starting the registered dispatchers: ServerWatchdog, ServerJobCancellationWatcher, ExpirationManager, CountersAggregator, Worker, DelayedJobScheduler, RecurringJobScheduler... +2021-08-21 17:46:50.768 +08:00 [DBG] Execution loop ServerHeartbeatProcess:20468603 has started in 30.3152 ms +2021-08-21 17:46:50.772 +08:00 [DBG] Execution loop ServerWatchdog:289af118 has started in 3.3626 ms +2021-08-21 17:46:50.774 +08:00 [DBG] Execution loop ServerJobCancellationWatcher:9c6b7cb3 has started in 5.0078 ms +2021-08-21 17:46:50.775 +08:00 [DBG] Execution loop ExpirationManager:2c084f22 has started in 4.3988 ms +2021-08-21 17:46:50.777 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-08-21 17:46:50.777 +08:00 [DBG] Execution loop CountersAggregator:fcc1aef2 has started in 3.1014 ms +2021-08-21 17:46:50.778 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 17:46:50.779 +08:00 [DBG] Execution loop Worker:54f5f916 has started in 3.6268 ms +2021-08-21 17:46:50.782 +08:00 [DBG] Execution loop Worker:3da56855 has started in 5.5916 ms +2021-08-21 17:46:50.784 +08:00 [DBG] Execution loop Worker:a29407f8 has started in 7.6201 ms +2021-08-21 17:46:50.785 +08:00 [DBG] Execution loop Worker:3ffbd8ef has started in 9.8112 ms +2021-08-21 17:46:50.786 +08:00 [DBG] Execution loop Worker:24695e95 has started in 11.022 ms +2021-08-21 17:46:50.787 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-08-21 17:46:50.790 +08:00 [DBG] Execution loop Worker:f19b113b has started in 14.9831 ms +2021-08-21 17:46:50.791 +08:00 [DBG] Execution loop Worker:850942f4 has started in 15.8161 ms +2021-08-21 17:46:50.794 +08:00 [DBG] Execution loop Worker:304023ce has started in 18.0342 ms +2021-08-21 17:46:50.796 +08:00 [DBG] Execution loop Worker:72c517e2 has started in 19.634 ms +2021-08-21 17:46:50.798 +08:00 [DBG] Execution loop Worker:c0ec18e9 has started in 22.6213 ms +2021-08-21 17:46:50.800 +08:00 [DBG] Execution loop Worker:7ecfcf07 has started in 23.8791 ms +2021-08-21 17:46:50.802 +08:00 [DBG] Execution loop Worker:4bdcdcab has started in 25.9436 ms +2021-08-21 17:46:50.803 +08:00 [DBG] Execution loop Worker:5854fc05 has started in 27.3683 ms +2021-08-21 17:46:50.804 +08:00 [INF] 1 servers were removed due to timeout +2021-08-21 17:46:50.807 +08:00 [DBG] Execution loop Worker:5641a781 has started in 31.9498 ms +2021-08-21 17:46:50.807 +08:00 [DBG] Execution loop Worker:6c555692 has started in 32.0908 ms +2021-08-21 17:46:50.810 +08:00 [DBG] Execution loop Worker:6259e631 has started in 34.828 ms +2021-08-21 17:46:50.815 +08:00 [DBG] Execution loop Worker:ccffcc2c has started in 39.5569 ms +2021-08-21 17:46:50.821 +08:00 [DBG] Execution loop Worker:bc7d8cfc has started in 45.2291 ms +2021-08-21 17:46:50.831 +08:00 [DBG] Execution loop Worker:9dca8428 has started in 55.3967 ms +2021-08-21 17:46:50.833 +08:00 [DBG] removed records count=0 +2021-08-21 17:46:50.833 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-08-21 17:46:50.841 +08:00 [DBG] Execution loop Worker:6ad670b2 has started in 65.2584 ms +2021-08-21 17:46:50.842 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-08-21 17:46:50.849 +08:00 [INF] Server szqh003802a:11564:eeaf7571 all the dispatchers started +2021-08-21 17:46:50.850 +08:00 [DBG] Execution loop DelayedJobScheduler:0649f22d has started in 18.7994 ms +2021-08-21 17:46:50.857 +08:00 [DBG] Execution loop RecurringJobScheduler:6a54abff has started in 15.2094 ms +2021-08-21 17:46:50.891 +08:00 [DBG] removed records count=22 +2021-08-21 17:46:51.405 +08:00 [INF] Initialized all ABP modules. +2021-08-21 17:46:51.476 +08:00 [INF] Now listening on: http://localhost:44315 +2021-08-21 17:46:51.477 +08:00 [INF] Application started. Press Ctrl+C to shut down. +2021-08-21 17:46:51.477 +08:00 [INF] Hosting environment: Development +2021-08-21 17:46:51.477 +08:00 [INF] Content root path: D:\abp\aspnet-core\services\src\CompanyName.ProjectName.HttpApi.Host +2021-08-21 17:46:51.906 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-08-21 17:46:51.914 +08:00 [DBG] removed records count=0 +2021-08-21 17:46:51.914 +08:00 [DBG] Removing outdated records from table 'List'... +2021-08-21 17:46:51.915 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-08-21 17:46:51.923 +08:00 [DBG] removed records count=0 +2021-08-21 17:46:51.923 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-08-21 17:46:51.924 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-08-21 17:46:51.932 +08:00 [DBG] removed records count=0 +2021-08-21 17:46:51.932 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-08-21 17:46:51.933 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-08-21 17:46:51.940 +08:00 [DBG] removed records count=0 +2021-08-21 17:46:52.148 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/ - - +2021-08-21 17:46:54.701 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-08-21 17:46:54.792 +08:00 [INF] Route matched with {action = "Index", controller = "Home", area = "", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult Index() on controller CompanyName.ProjectName.Controllers.HomeController (CompanyName.ProjectName.HttpApi.Host). +2021-08-21 17:46:54.840 +08:00 [INF] Executing RedirectResult, redirecting to /swagger. +2021-08-21 17:46:54.851 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host) in 53.2646ms +2021-08-21 17:46:54.851 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-08-21 17:46:54.875 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/ - - - 302 0 - 2727.5914ms +2021-08-21 17:46:54.893 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/index.html - - +2021-08-21 17:46:54.951 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/index.html - - - 200 - text/html;charset=utf-8 58.4934ms +2021-08-21 17:46:55.290 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - +2021-08-21 17:46:55.804 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 513.6999ms +2021-08-21 17:47:01.050 +08:00 [DBG] 495 recurring job(s) processed by scheduler. +2021-08-21 17:47:20.791 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 17:47:36.178 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - +2021-08-21 17:47:36.373 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 195.4597ms +2021-08-21 17:47:50.807 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 17:48:20.827 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 17:48:50.841 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 17:49:01.324 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 17:49:20.860 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 17:49:50.881 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 17:50:20.891 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 17:50:48.009 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 17:50:48.024 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:50:48.033 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 23.6692ms +2021-08-21 17:50:48.038 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 17:50:48.038 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:50:48.113 +08:00 [INF] Successfully validated the token. +2021-08-21 17:50:48.128 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 17:50:48.129 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:50:48.129 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 1.6554ms +2021-08-21 17:50:48.131 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:50:48.133 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:50:48.137 +08:00 [INF] Successfully validated the token. +2021-08-21 17:50:48.138 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:50:48.157 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:50:48.548 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:50:48.548 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:50:48.552 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 514.6295ms +2021-08-21 17:50:49.300 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:50:49.328 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 1170.7416ms +2021-08-21 17:50:49.329 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:50:49.354 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:50:49.404 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:50:49.404 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:50:49.404 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 1273.0027ms +2021-08-21 17:50:50.910 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 17:50:53.684 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/enabled - - +2021-08-21 17:50:53.684 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:50:53.684 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/enabled - - - 204 - - 0.4326ms +2021-08-21 17:50:53.686 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/enabled application/json 34 +2021-08-21 17:50:53.686 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:50:53.688 +08:00 [INF] Successfully validated the token. +2021-08-21 17:50:53.689 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.EnabledAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:50:53.692 +08:00 [INF] Route matched with {action = "Enabled", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task EnabledAsync(CompanyName.ProjectName.IdentityServers.Clients.EnabledInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:50:53.806 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.EnabledAsync (CompanyName.ProjectName.HttpApi) in 114.4581ms +2021-08-21 17:50:53.806 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.EnabledAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:50:53.839 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:50:53.839 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:50:53.890 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:50:53.890 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:50:53.890 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/enabled application/json 34 - 204 - - 204.5476ms +2021-08-21 17:50:53.926 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 17:50:53.927 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:50:53.927 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.6953ms +2021-08-21 17:50:53.929 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 17:50:53.929 +08:00 [INF] CORS policy execution successful. +2021-08-21 17:50:53.932 +08:00 [INF] Successfully validated the token. +2021-08-21 17:50:53.933 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:50:53.933 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 17:50:53.986 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 17:50:53.987 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 53.677ms +2021-08-21 17:50:53.987 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 17:50:53.993 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:50:54.019 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:50:54.019 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 17:50:54.019 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 89.8961ms +2021-08-21 17:51:01.697 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 17:51:20.932 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 17:51:50.780 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 17:51:50.942 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 17:52:20.979 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 17:52:50.993 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 17:53:21.011 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 17:53:32.414 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 17:53:48.099 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 17:53:51.038 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 17:54:01.046 +08:00 [DBG] 827 recurring job(s) processed by scheduler. +2021-08-21 17:54:21.061 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 17:54:51.089 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 17:55:21.095 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 17:55:31.917 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 17:55:47.654 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 17:55:51.115 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 17:56:01.052 +08:00 [DBG] 832 recurring job(s) processed by scheduler. +2021-08-21 17:56:21.145 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 17:56:50.786 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 17:56:51.175 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 17:57:21.191 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 17:57:49.165 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 17:57:51.202 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 17:58:01.050 +08:00 [DBG] 619 recurring job(s) processed by scheduler. +2021-08-21 17:58:21.220 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 17:58:51.239 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 17:59:21.265 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 17:59:48.991 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 17:59:51.280 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:00:01.055 +08:00 [DBG] 673 recurring job(s) processed by scheduler. +2021-08-21 18:00:21.286 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:00:51.311 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:01:21.331 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:01:50.797 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 18:01:51.343 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:02:01.061 +08:00 [DBG] 782 recurring job(s) processed by scheduler. +2021-08-21 18:02:21.375 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:02:51.404 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:03:21.426 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:03:51.450 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:03:52.501 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 18:03:52.501 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:03:52.502 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4694ms +2021-08-21 18:03:52.505 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 18:03:52.505 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:03:52.509 +08:00 [INF] Successfully validated the token. +2021-08-21 18:03:52.537 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:03:52.537 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:03:52.537 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 32.5694ms +2021-08-21 18:03:52.862 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 18:03:52.862 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:03:52.862 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.6335ms +2021-08-21 18:03:52.865 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 18:03:52.865 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:03:52.868 +08:00 [INF] Successfully validated the token. +2021-08-21 18:03:52.870 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:03:52.870 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 18:03:52.922 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 18:03:52.924 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 54.1867ms +2021-08-21 18:03:52.924 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:03:52.931 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:03:52.957 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:03:52.958 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:03:52.958 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 93.2718ms +2021-08-21 18:03:59.501 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 18:03:59.501 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:03:59.501 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5274ms +2021-08-21 18:03:59.504 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 18:03:59.504 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:03:59.507 +08:00 [INF] Successfully validated the token. +2021-08-21 18:03:59.529 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:03:59.529 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:03:59.530 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.2610ms +2021-08-21 18:03:59.860 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 18:03:59.860 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:03:59.860 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.6553ms +2021-08-21 18:03:59.862 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 18:03:59.863 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:03:59.865 +08:00 [INF] Successfully validated the token. +2021-08-21 18:03:59.867 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:03:59.867 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 18:03:59.920 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 18:03:59.922 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 54.563ms +2021-08-21 18:03:59.922 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:03:59.930 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:03:59.957 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:03:59.957 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:03:59.958 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 95.0832ms +2021-08-21 18:04:01.084 +08:00 [DBG] 692 recurring job(s) processed by scheduler. +2021-08-21 18:04:01.501 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 18:04:01.501 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:04:01.501 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4518ms +2021-08-21 18:04:01.502 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 18:04:01.503 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:04:01.505 +08:00 [INF] Successfully validated the token. +2021-08-21 18:04:01.542 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:04:01.542 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:04:01.543 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 40.3154ms +2021-08-21 18:04:01.850 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 18:04:01.851 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:04:01.853 +08:00 [INF] Successfully validated the token. +2021-08-21 18:04:01.854 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:04:01.854 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 18:04:01.905 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 18:04:01.906 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 51.3265ms +2021-08-21 18:04:01.906 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:04:01.912 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:04:01.938 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:04:01.938 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:04:01.938 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 87.5485ms +2021-08-21 18:04:21.468 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:04:31.903 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 18:04:31.903 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:04:31.903 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6606ms +2021-08-21 18:04:31.906 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 18:04:31.906 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:04:31.909 +08:00 [INF] Successfully validated the token. +2021-08-21 18:04:31.931 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:04:31.931 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:04:31.931 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 25.2564ms +2021-08-21 18:04:31.993 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 18:04:31.994 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:04:31.994 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4592ms +2021-08-21 18:04:31.997 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 18:04:31.997 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:04:32.000 +08:00 [INF] Successfully validated the token. +2021-08-21 18:04:32.002 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:04:32.002 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 18:04:32.053 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 18:04:32.054 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 51.7996ms +2021-08-21 18:04:32.054 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:04:32.061 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:04:32.093 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:04:32.093 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:04:32.093 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 96.5148ms +2021-08-21 18:04:33.299 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 18:04:33.300 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:04:33.300 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5289ms +2021-08-21 18:04:33.302 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 18:04:33.303 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:04:33.306 +08:00 [INF] Successfully validated the token. +2021-08-21 18:04:33.344 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:04:33.344 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:04:33.345 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 42.4093ms +2021-08-21 18:04:33.855 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 18:04:33.856 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:04:33.858 +08:00 [INF] Successfully validated the token. +2021-08-21 18:04:33.860 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:04:33.860 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 18:04:33.907 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 18:04:33.908 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 48.1498ms +2021-08-21 18:04:33.908 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:04:33.914 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:04:33.939 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:04:33.939 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:04:33.940 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 84.2523ms +2021-08-21 18:04:36.567 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 18:04:36.568 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:04:36.568 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.6357ms +2021-08-21 18:04:36.570 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 18:04:36.571 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:04:36.573 +08:00 [INF] Successfully validated the token. +2021-08-21 18:04:36.575 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:04:36.578 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 18:04:36.883 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 18:04:36.886 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 308.0482ms +2021-08-21 18:04:36.886 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:04:36.895 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:04:36.918 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:04:36.919 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:04:36.919 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 349.0822ms +2021-08-21 18:04:51.490 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:05:21.508 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:05:51.529 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:06:01.337 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 18:06:21.550 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:06:50.813 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 18:06:51.577 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:07:20.857 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 18:07:20.857 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:07:20.857 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4341ms +2021-08-21 18:07:20.859 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 18:07:20.859 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:07:20.861 +08:00 [INF] Successfully validated the token. +2021-08-21 18:07:20.863 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:07:20.863 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 18:07:20.898 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 18:07:20.899 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 35.7082ms +2021-08-21 18:07:20.899 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:07:20.902 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:07:20.937 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:07:20.937 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:07:20.938 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 78.7224ms +2021-08-21 18:07:21.624 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:07:51.647 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:07:52.841 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 18:07:52.841 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:07:52.841 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4817ms +2021-08-21 18:07:52.843 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 18:07:52.843 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:07:52.846 +08:00 [INF] Successfully validated the token. +2021-08-21 18:07:52.847 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:07:52.847 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 18:07:52.882 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 18:07:52.882 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 34.9489ms +2021-08-21 18:07:52.882 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:07:52.886 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:07:52.910 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:07:52.910 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:07:52.910 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 66.9308ms +2021-08-21 18:08:21.659 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:08:21.712 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 18:08:28.158 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 18:08:28.158 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:08:28.159 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6388ms +2021-08-21 18:08:28.161 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 18:08:28.161 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:08:28.164 +08:00 [INF] Successfully validated the token. +2021-08-21 18:08:28.190 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:08:28.190 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:08:28.190 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 29.1291ms +2021-08-21 18:08:28.853 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 18:08:28.853 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:08:28.853 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.5893ms +2021-08-21 18:08:28.855 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 18:08:28.856 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:08:28.858 +08:00 [INF] Successfully validated the token. +2021-08-21 18:08:28.860 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:08:28.860 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 18:08:28.899 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 18:08:28.899 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 39.1992ms +2021-08-21 18:08:28.899 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:08:28.903 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:08:28.926 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:08:28.926 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:08:28.927 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 71.2274ms +2021-08-21 18:08:39.375 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 18:08:39.376 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:08:39.376 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.7144ms +2021-08-21 18:08:39.379 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 18:08:39.379 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:08:39.382 +08:00 [INF] Successfully validated the token. +2021-08-21 18:08:39.406 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:08:39.406 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:08:39.407 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 28.0333ms +2021-08-21 18:08:40.942 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 18:08:40.942 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:08:40.942 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4887ms +2021-08-21 18:08:40.944 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 18:08:40.945 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:08:40.947 +08:00 [INF] Successfully validated the token. +2021-08-21 18:08:40.971 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:08:40.971 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:08:40.972 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 27.3548ms +2021-08-21 18:08:41.022 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 18:08:41.022 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:08:41.023 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4587ms +2021-08-21 18:08:41.025 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 18:08:41.025 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:08:41.028 +08:00 [INF] Successfully validated the token. +2021-08-21 18:08:41.030 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:08:41.030 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 18:08:41.068 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 18:08:41.069 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 38.8063ms +2021-08-21 18:08:41.069 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:08:41.074 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:08:41.103 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:08:41.103 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:08:41.104 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 78.9426ms +2021-08-21 18:08:42.572 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 18:08:51.665 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:08:54.126 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 18:08:54.127 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:08:54.127 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4968ms +2021-08-21 18:08:54.129 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 18:08:54.129 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:08:54.131 +08:00 [INF] Successfully validated the token. +2021-08-21 18:08:54.154 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:08:54.154 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:08:54.154 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 25.1902ms +2021-08-21 18:08:56.036 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 18:08:56.037 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:08:56.037 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5217ms +2021-08-21 18:08:56.039 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 18:08:56.039 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:08:56.042 +08:00 [INF] Successfully validated the token. +2021-08-21 18:08:56.065 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:08:56.065 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:08:56.065 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.2243ms +2021-08-21 18:08:56.861 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 18:08:56.861 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:08:56.861 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.5559ms +2021-08-21 18:08:56.863 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 18:08:56.864 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:08:56.866 +08:00 [INF] Successfully validated the token. +2021-08-21 18:08:56.867 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:08:56.867 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 18:08:56.904 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 18:08:56.905 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 37.2152ms +2021-08-21 18:08:56.905 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:08:56.908 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:08:56.931 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:08:56.931 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:08:56.931 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 67.6367ms +2021-08-21 18:08:58.585 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 18:08:58.595 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:08:58.602 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 18.5265ms +2021-08-21 18:08:58.612 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 18:08:58.613 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:08:58.620 +08:00 [INF] Successfully validated the token. +2021-08-21 18:08:58.656 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:08:58.656 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:08:58.657 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 44.8999ms +2021-08-21 18:08:58.863 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 18:08:58.863 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:08:58.865 +08:00 [INF] Successfully validated the token. +2021-08-21 18:08:58.867 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:08:58.867 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 18:08:58.905 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 18:08:58.906 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 38.4722ms +2021-08-21 18:08:58.906 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:08:58.909 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:08:58.933 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:08:58.933 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:08:58.934 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 70.9194ms +2021-08-21 18:09:01.052 +08:00 [DBG] 880 recurring job(s) processed by scheduler. +2021-08-21 18:09:02.289 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 18:09:02.289 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:09:02.289 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4580ms +2021-08-21 18:09:02.291 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 18:09:02.292 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:09:02.294 +08:00 [INF] Successfully validated the token. +2021-08-21 18:09:02.317 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:02.317 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:02.318 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.2725ms +2021-08-21 18:09:03.520 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 18:09:03.520 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:09:03.520 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4798ms +2021-08-21 18:09:03.522 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 18:09:03.522 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:09:03.526 +08:00 [INF] Successfully validated the token. +2021-08-21 18:09:03.550 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:03.550 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:03.550 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 28.4607ms +2021-08-21 18:09:03.862 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 18:09:03.862 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:09:03.862 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.5400ms +2021-08-21 18:09:03.864 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 18:09:03.865 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:09:03.868 +08:00 [INF] Successfully validated the token. +2021-08-21 18:09:03.870 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:09:03.870 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 18:09:03.908 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 18:09:03.909 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 38.6029ms +2021-08-21 18:09:03.909 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:09:03.912 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:03.940 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:03.940 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:03.940 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 75.8077ms +2021-08-21 18:09:07.598 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 18:09:07.623 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:09:07.623 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 31.0826ms +2021-08-21 18:09:07.627 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 18:09:07.628 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:09:07.633 +08:00 [INF] Successfully validated the token. +2021-08-21 18:09:07.658 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:07.658 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:07.659 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 31.9460ms +2021-08-21 18:09:08.977 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 18:09:08.978 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:09:08.978 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4966ms +2021-08-21 18:09:08.979 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 18:09:08.980 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:09:08.982 +08:00 [INF] Successfully validated the token. +2021-08-21 18:09:09.005 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:09.005 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:09.005 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 25.5529ms +2021-08-21 18:09:12.035 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 18:09:12.036 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:09:12.036 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6516ms +2021-08-21 18:09:12.038 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 18:09:12.039 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:09:12.042 +08:00 [INF] Successfully validated the token. +2021-08-21 18:09:12.066 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:12.066 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:12.066 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 27.7492ms +2021-08-21 18:09:13.347 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 18:09:13.348 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:09:13.348 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5085ms +2021-08-21 18:09:13.351 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 18:09:13.351 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:09:13.354 +08:00 [INF] Successfully validated the token. +2021-08-21 18:09:13.376 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:13.376 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:13.377 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 25.7213ms +2021-08-21 18:09:13.850 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 18:09:13.850 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:09:13.850 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4556ms +2021-08-21 18:09:13.852 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 18:09:13.852 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:09:13.855 +08:00 [INF] Successfully validated the token. +2021-08-21 18:09:13.856 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:09:13.856 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 18:09:13.892 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 18:09:13.892 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 36.1791ms +2021-08-21 18:09:13.892 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:09:13.895 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:13.919 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:13.919 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:13.919 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 67.0546ms +2021-08-21 18:09:21.684 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:09:23.544 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 18:09:23.544 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:09:23.544 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5283ms +2021-08-21 18:09:23.546 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 18:09:23.547 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:09:23.549 +08:00 [INF] Successfully validated the token. +2021-08-21 18:09:23.574 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:23.574 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:23.574 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 27.9598ms +2021-08-21 18:09:23.848 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 18:09:23.848 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:09:23.848 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4452ms +2021-08-21 18:09:23.850 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 18:09:23.850 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:09:23.853 +08:00 [INF] Successfully validated the token. +2021-08-21 18:09:23.855 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:09:23.855 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 18:09:23.894 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 18:09:23.894 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 39.2725ms +2021-08-21 18:09:23.894 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:09:23.897 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:23.925 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:23.925 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:23.926 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 75.7964ms +2021-08-21 18:09:28.198 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 18:09:28.198 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:09:28.198 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4631ms +2021-08-21 18:09:28.200 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 18:09:28.200 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:09:28.203 +08:00 [INF] Successfully validated the token. +2021-08-21 18:09:28.226 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:28.226 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:28.227 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.9252ms +2021-08-21 18:09:28.854 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 18:09:28.855 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:09:28.855 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4684ms +2021-08-21 18:09:28.857 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 18:09:28.857 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:09:28.859 +08:00 [INF] Successfully validated the token. +2021-08-21 18:09:28.861 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:09:28.861 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 18:09:28.896 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 18:09:28.896 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 35.2261ms +2021-08-21 18:09:28.896 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:09:28.899 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:28.924 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:28.924 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:28.924 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 67.6451ms +2021-08-21 18:09:31.955 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 18:09:31.955 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:09:31.955 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5253ms +2021-08-21 18:09:31.957 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 18:09:31.958 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:09:31.961 +08:00 [INF] Successfully validated the token. +2021-08-21 18:09:31.993 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:31.993 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:31.993 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 35.7132ms +2021-08-21 18:09:32.844 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 18:09:32.844 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:09:32.847 +08:00 [INF] Successfully validated the token. +2021-08-21 18:09:32.848 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:09:32.848 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 18:09:32.883 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 18:09:32.883 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 35.3464ms +2021-08-21 18:09:32.883 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:09:32.886 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:32.910 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:32.910 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:32.910 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 66.1339ms +2021-08-21 18:09:35.551 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 18:09:35.551 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:09:35.552 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6300ms +2021-08-21 18:09:35.554 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 18:09:35.555 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:09:35.557 +08:00 [INF] Successfully validated the token. +2021-08-21 18:09:35.580 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:35.580 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:35.580 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 25.7372ms +2021-08-21 18:09:35.854 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 18:09:35.854 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:09:35.854 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4639ms +2021-08-21 18:09:35.856 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 18:09:35.857 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:09:35.859 +08:00 [INF] Successfully validated the token. +2021-08-21 18:09:35.860 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:09:35.860 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 18:09:35.899 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 18:09:35.899 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 38.4503ms +2021-08-21 18:09:35.899 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:09:35.903 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:35.929 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:35.929 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:35.929 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 73.1009ms +2021-08-21 18:09:42.396 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 18:09:42.397 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:09:42.397 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4938ms +2021-08-21 18:09:42.399 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 18:09:42.399 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:09:42.402 +08:00 [INF] Successfully validated the token. +2021-08-21 18:09:42.426 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:42.426 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:42.427 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 28.0138ms +2021-08-21 18:09:42.853 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 18:09:42.853 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:09:42.854 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.5735ms +2021-08-21 18:09:42.856 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 18:09:42.856 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:09:42.860 +08:00 [INF] Successfully validated the token. +2021-08-21 18:09:42.861 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:09:42.861 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 18:09:42.900 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 18:09:42.900 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 38.5554ms +2021-08-21 18:09:42.900 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:09:42.904 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:42.929 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:42.929 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:42.930 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 73.5228ms +2021-08-21 18:09:48.843 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 18:09:48.843 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:09:48.843 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4484ms +2021-08-21 18:09:48.845 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 18:09:48.845 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:09:48.848 +08:00 [INF] Successfully validated the token. +2021-08-21 18:09:48.849 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:09:48.849 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 18:09:48.887 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 18:09:48.888 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 38.31ms +2021-08-21 18:09:48.888 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:09:48.891 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:48.917 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:48.918 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:48.918 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 72.7475ms +2021-08-21 18:09:51.696 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:09:51.835 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 18:09:51.836 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:09:51.838 +08:00 [INF] Successfully validated the token. +2021-08-21 18:09:51.839 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:09:51.839 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 18:09:51.874 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 18:09:51.875 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 35.5069ms +2021-08-21 18:09:51.875 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:09:51.878 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:51.902 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:51.902 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:09:51.903 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 67.3104ms +2021-08-21 18:10:21.702 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:10:27.840 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 18:10:27.840 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:10:27.840 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4686ms +2021-08-21 18:10:27.842 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 18:10:27.842 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:10:27.845 +08:00 [INF] Successfully validated the token. +2021-08-21 18:10:27.847 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:10:27.847 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 18:10:27.882 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 18:10:27.883 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 35.8788ms +2021-08-21 18:10:27.883 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:10:27.887 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:10:27.915 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:10:27.915 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:10:27.915 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 73.0654ms +2021-08-21 18:10:28.864 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 18:10:28.864 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:10:28.867 +08:00 [INF] Successfully validated the token. +2021-08-21 18:10:28.868 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:10:28.868 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 18:10:28.906 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 18:10:28.906 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 38.131ms +2021-08-21 18:10:28.907 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:10:28.911 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:10:28.937 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:10:28.937 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:10:28.937 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 73.4133ms +2021-08-21 18:10:30.832 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 18:10:30.832 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:10:30.835 +08:00 [INF] Successfully validated the token. +2021-08-21 18:10:30.836 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:10:30.836 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 18:10:30.872 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 18:10:30.872 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 35.6984ms +2021-08-21 18:10:30.872 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:10:30.875 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:10:30.900 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:10:30.900 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:10:30.900 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 68.3740ms +2021-08-21 18:10:35.633 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 18:10:44.841 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 18:10:44.841 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:10:44.842 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4402ms +2021-08-21 18:10:44.843 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 18:10:44.844 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:10:44.847 +08:00 [INF] Successfully validated the token. +2021-08-21 18:10:44.848 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:10:44.849 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 18:10:44.885 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 18:10:44.885 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 36.3441ms +2021-08-21 18:10:44.885 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:10:44.888 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:10:44.915 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:10:44.915 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:10:44.916 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 72.3206ms +2021-08-21 18:10:51.712 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:10:54.751 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 18:11:01.050 +08:00 [DBG] 324 recurring job(s) processed by scheduler. +2021-08-21 18:11:05.217 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 18:11:05.217 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:11:05.217 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4494ms +2021-08-21 18:11:05.219 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 18:11:05.219 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:11:05.221 +08:00 [INF] Successfully validated the token. +2021-08-21 18:11:05.243 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:11:05.243 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:11:05.244 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 24.7371ms +2021-08-21 18:11:05.304 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 18:11:05.305 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:11:05.305 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.6512ms +2021-08-21 18:11:05.307 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 18:11:05.307 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:11:05.309 +08:00 [INF] Successfully validated the token. +2021-08-21 18:11:05.311 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:11:05.311 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 18:11:05.347 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 18:11:05.347 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 36.1817ms +2021-08-21 18:11:05.347 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:11:05.350 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:11:05.377 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:11:05.378 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:11:05.378 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 71.4729ms +2021-08-21 18:11:21.715 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:11:50.816 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 18:11:51.727 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:12:21.735 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:12:34.287 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 18:12:51.749 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:12:52.998 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 18:13:01.056 +08:00 [DBG] 439 recurring job(s) processed by scheduler. +2021-08-21 18:13:21.776 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:13:22.501 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 18:13:22.501 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:13:22.501 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5191ms +2021-08-21 18:13:22.513 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 18:13:22.513 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:13:22.515 +08:00 [INF] Successfully validated the token. +2021-08-21 18:13:22.543 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:13:22.543 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:13:22.543 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 30.6091ms +2021-08-21 18:13:22.642 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 18:13:22.642 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:13:22.642 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.5381ms +2021-08-21 18:13:22.645 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 18:13:22.645 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:13:22.647 +08:00 [INF] Successfully validated the token. +2021-08-21 18:13:22.648 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:13:22.649 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 18:13:22.705 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 18:13:22.705 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 56.8193ms +2021-08-21 18:13:22.706 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:13:22.713 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:13:22.764 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:13:22.764 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:13:22.764 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 119.9226ms +2021-08-21 18:13:51.805 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:14:15.822 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 18:14:15.823 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:14:15.823 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.5240ms +2021-08-21 18:14:15.825 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 18:14:15.825 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:14:15.828 +08:00 [INF] Successfully validated the token. +2021-08-21 18:14:15.830 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:14:15.830 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 18:14:15.866 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 18:14:15.866 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 36.1306ms +2021-08-21 18:14:15.866 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:14:15.870 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:14:15.910 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:14:15.910 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:14:15.910 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 85.1440ms +2021-08-21 18:14:21.824 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:14:21.854 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 18:14:21.854 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:14:21.854 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5024ms +2021-08-21 18:14:21.856 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 18:14:21.857 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:14:21.859 +08:00 [INF] Successfully validated the token. +2021-08-21 18:14:21.881 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:14:21.881 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:14:21.881 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 24.9461ms +2021-08-21 18:14:21.993 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 18:14:21.994 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:14:21.994 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.6090ms +2021-08-21 18:14:21.996 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 18:14:21.996 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:14:21.998 +08:00 [INF] Successfully validated the token. +2021-08-21 18:14:22.000 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:14:22.000 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 18:14:22.037 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 18:14:22.038 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 37.7947ms +2021-08-21 18:14:22.038 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:14:22.042 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:14:22.072 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:14:22.072 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:14:22.072 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 76.3607ms +2021-08-21 18:14:49.391 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 18:14:51.842 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:15:01.053 +08:00 [DBG] 633 recurring job(s) processed by scheduler. +2021-08-21 18:15:21.867 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:15:51.889 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:16:21.899 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:16:50.826 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 18:16:51.917 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:17:01.059 +08:00 [DBG] 810 recurring job(s) processed by scheduler. +2021-08-21 18:17:21.942 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:17:38.792 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 18:17:38.793 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:17:38.793 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5230ms +2021-08-21 18:17:38.795 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 18:17:38.795 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:17:38.798 +08:00 [INF] Successfully validated the token. +2021-08-21 18:17:38.821 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:17:38.821 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:17:38.822 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.4807ms +2021-08-21 18:17:38.904 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 18:17:38.904 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:17:38.905 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.7759ms +2021-08-21 18:17:38.907 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 18:17:38.907 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:17:38.910 +08:00 [INF] Successfully validated the token. +2021-08-21 18:17:38.911 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:17:38.911 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 18:17:38.951 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 18:17:38.952 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 40.1638ms +2021-08-21 18:17:38.952 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:17:38.955 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:17:38.982 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:17:38.982 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:17:38.982 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 75.4476ms +2021-08-21 18:17:51.971 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:18:01.682 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 18:18:01.682 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:18:01.682 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5356ms +2021-08-21 18:18:01.684 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 18:18:01.685 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:18:01.688 +08:00 [INF] Successfully validated the token. +2021-08-21 18:18:01.729 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:18:01.729 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:18:01.730 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 45.2178ms +2021-08-21 18:18:01.797 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 18:18:01.797 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:18:01.797 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4421ms +2021-08-21 18:18:01.799 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 18:18:01.799 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:18:01.802 +08:00 [INF] Successfully validated the token. +2021-08-21 18:18:01.804 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:18:01.804 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 18:18:01.841 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 18:18:01.842 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 37.5096ms +2021-08-21 18:18:01.842 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:18:01.845 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:18:01.877 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:18:01.877 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:18:01.878 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 78.4757ms +2021-08-21 18:18:21.986 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:18:26.808 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 18:18:26.808 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:18:26.809 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4881ms +2021-08-21 18:18:26.811 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 18:18:26.812 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:18:26.814 +08:00 [INF] Successfully validated the token. +2021-08-21 18:18:26.815 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:18:26.815 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 18:18:26.853 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 18:18:26.853 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 37.4932ms +2021-08-21 18:18:26.853 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:18:26.857 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:18:26.882 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:18:26.882 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:18:26.883 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 71.4149ms +2021-08-21 18:18:34.150 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 18:18:34.150 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:18:34.150 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4378ms +2021-08-21 18:18:34.152 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 18:18:34.152 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:18:34.155 +08:00 [INF] Successfully validated the token. +2021-08-21 18:18:34.196 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:18:34.196 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:18:34.196 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 43.8782ms +2021-08-21 18:18:34.256 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 18:18:34.256 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:18:34.257 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.5167ms +2021-08-21 18:18:34.258 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 18:18:34.259 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:18:34.261 +08:00 [INF] Successfully validated the token. +2021-08-21 18:18:34.262 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:18:34.262 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 18:18:34.300 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 18:18:34.300 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 37.7539ms +2021-08-21 18:18:34.300 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:18:34.305 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:18:34.341 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:18:34.341 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:18:34.342 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 83.3334ms +2021-08-21 18:18:52.005 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:19:01.054 +08:00 [DBG] 830 recurring job(s) processed by scheduler. +2021-08-21 18:19:22.026 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:19:52.048 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:20:22.074 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:20:52.097 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:21:01.294 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 18:21:22.126 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:21:50.838 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 18:21:52.143 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:22:22.171 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:22:52.191 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:23:01.623 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 18:23:22.218 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:23:52.239 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:24:22.260 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:24:52.291 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:25:22.306 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:25:36.501 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 18:25:52.318 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:25:54.434 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 18:26:01.066 +08:00 [DBG] 368 recurring job(s) processed by scheduler. +2021-08-21 18:26:22.342 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:26:30.398 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 18:26:30.398 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:26:30.398 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 2.5127ms +2021-08-21 18:26:30.402 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 18:26:30.402 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:26:30.405 +08:00 [INF] Successfully validated the token. +2021-08-21 18:26:30.428 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:26:30.428 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:26:30.429 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.8927ms +2021-08-21 18:26:33.041 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-21 18:26:33.041 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:26:33.042 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4403ms +2021-08-21 18:26:33.043 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 18:26:33.043 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:26:33.045 +08:00 [INF] Successfully validated the token. +2021-08-21 18:26:33.047 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:26:33.047 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 18:26:33.094 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 18:26:33.095 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 47.8349ms +2021-08-21 18:26:33.095 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:26:33.101 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:26:33.125 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:26:33.125 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:26:33.125 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 82.4420ms +2021-08-21 18:26:34.237 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 18:26:34.237 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:26:34.238 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.5081ms +2021-08-21 18:26:34.239 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 18:26:34.239 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:26:34.242 +08:00 [INF] Successfully validated the token. +2021-08-21 18:26:34.243 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:26:34.243 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 18:26:34.279 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 18:26:34.279 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 36.4181ms +2021-08-21 18:26:34.279 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:26:34.283 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:26:34.308 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:26:34.308 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:26:34.309 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 69.6537ms +2021-08-21 18:26:37.360 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-21 18:26:37.360 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:26:37.363 +08:00 [INF] Successfully validated the token. +2021-08-21 18:26:37.364 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:26:37.364 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-21 18:26:37.411 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 18:26:37.412 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 47.9749ms +2021-08-21 18:26:37.412 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:26:37.418 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:26:37.443 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:26:37.443 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:26:37.443 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 83.2856ms +2021-08-21 18:26:50.852 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 18:26:52.363 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:27:22.382 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:27:35.483 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 18:27:52.386 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:27:53.458 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 18:28:01.057 +08:00 [DBG] 418 recurring job(s) processed by scheduler. +2021-08-21 18:28:22.417 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:28:52.441 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:29:22.466 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:29:49.428 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 18:29:52.486 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:30:01.045 +08:00 [DBG] 640 recurring job(s) processed by scheduler. +2021-08-21 18:30:22.511 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:30:52.526 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:30:52.695 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 18:30:52.696 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:30:52.696 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6880ms +2021-08-21 18:30:52.699 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 18:30:52.699 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:30:52.703 +08:00 [INF] Successfully validated the token. +2021-08-21 18:30:52.726 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:30:52.726 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:30:52.726 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 27.8049ms +2021-08-21 18:30:52.827 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 18:30:52.827 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:30:52.827 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.5610ms +2021-08-21 18:30:52.830 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 18:30:52.830 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:30:52.833 +08:00 [INF] Successfully validated the token. +2021-08-21 18:30:52.835 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:30:52.835 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 18:30:52.881 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 18:30:52.881 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 46.1581ms +2021-08-21 18:30:52.881 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:30:52.885 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:30:52.916 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:30:52.917 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:30:52.917 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 86.9942ms +2021-08-21 18:31:06.978 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 18:31:06.979 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:31:06.979 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.7109ms +2021-08-21 18:31:06.981 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 18:31:06.982 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:31:06.984 +08:00 [INF] Successfully validated the token. +2021-08-21 18:31:07.019 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:31:07.019 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:31:07.020 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 38.4887ms +2021-08-21 18:31:07.082 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 18:31:07.082 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:31:07.083 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.6495ms +2021-08-21 18:31:07.086 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 18:31:07.086 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:31:07.089 +08:00 [INF] Successfully validated the token. +2021-08-21 18:31:07.090 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:31:07.090 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 18:31:07.128 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 18:31:07.129 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 38.0469ms +2021-08-21 18:31:07.129 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:31:07.134 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:31:07.167 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:31:07.167 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:31:07.167 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 81.5452ms +2021-08-21 18:31:22.535 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:31:49.630 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 18:31:50.838 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 18:31:52.553 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:32:01.059 +08:00 [DBG] 628 recurring job(s) processed by scheduler. +2021-08-21 18:32:22.559 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:32:30.766 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 18:32:30.766 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:32:30.767 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.7556ms +2021-08-21 18:32:30.769 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 18:32:30.769 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:32:30.772 +08:00 [INF] Successfully validated the token. +2021-08-21 18:32:30.773 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:32:30.773 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 18:32:30.809 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 18:32:30.810 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 36.5857ms +2021-08-21 18:32:30.810 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:32:30.813 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:32:30.839 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:32:30.839 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:32:30.839 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 70.4574ms +2021-08-21 18:32:36.715 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 18:32:36.716 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:32:36.716 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6036ms +2021-08-21 18:32:36.719 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 18:32:36.719 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:32:36.721 +08:00 [INF] Successfully validated the token. +2021-08-21 18:32:36.755 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:32:36.755 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:32:36.755 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 36.2340ms +2021-08-21 18:32:36.860 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 18:32:36.861 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:32:36.861 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4701ms +2021-08-21 18:32:36.862 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 18:32:36.863 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:32:36.865 +08:00 [INF] Successfully validated the token. +2021-08-21 18:32:36.868 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:32:36.868 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 18:32:36.908 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 18:32:36.909 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 40.7988ms +2021-08-21 18:32:36.909 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:32:36.913 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:32:36.949 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:32:36.950 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:32:36.950 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 87.6094ms +2021-08-21 18:32:52.577 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:33:22.594 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:33:25.670 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 18:33:25.670 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:33:25.670 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4716ms +2021-08-21 18:33:25.672 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 18:33:25.672 +08:00 [INF] CORS policy execution successful. +2021-08-21 18:33:25.674 +08:00 [INF] Successfully validated the token. +2021-08-21 18:33:25.675 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:33:25.675 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 18:33:25.712 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 18:33:25.712 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 36.8049ms +2021-08-21 18:33:25.712 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 18:33:25.716 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:33:25.741 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:33:25.741 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 18:33:25.741 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 69.3044ms +2021-08-21 18:33:52.604 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:34:01.068 +08:00 [DBG] 815 recurring job(s) processed by scheduler. +2021-08-21 18:34:22.618 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:34:52.640 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:35:22.669 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:35:52.677 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:36:01.049 +08:00 [DBG] 846 recurring job(s) processed by scheduler. +2021-08-21 18:36:22.693 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:36:50.847 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 18:36:52.700 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:37:22.706 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:37:52.718 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:38:01.348 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 18:38:22.736 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:38:52.758 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:39:22.785 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:39:52.809 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:40:18.577 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 18:40:22.817 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:40:35.691 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 18:40:52.726 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 18:40:52.834 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:41:01.048 +08:00 [DBG] 483 recurring job(s) processed by scheduler. +2021-08-21 18:41:22.863 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:41:50.853 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 18:41:52.873 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:42:22.882 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:42:33.242 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 18:42:50.144 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 18:42:52.895 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:43:01.041 +08:00 [DBG] 640 recurring job(s) processed by scheduler. +2021-08-21 18:43:22.924 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:43:52.946 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:44:22.951 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:44:33.142 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 18:44:50.064 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 18:44:52.961 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:45:01.044 +08:00 [DBG] 646 recurring job(s) processed by scheduler. +2021-08-21 18:45:22.982 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:45:53.002 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:46:23.016 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:46:48.297 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 18:46:50.849 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 18:46:51.783 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-08-21 18:46:51.784 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-08-21 18:46:51.792 +08:00 [DBG] removed records count=2 +2021-08-21 18:46:52.805 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-08-21 18:46:52.812 +08:00 [DBG] removed records count=0 +2021-08-21 18:46:52.812 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-08-21 18:46:52.813 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-08-21 18:46:52.824 +08:00 [DBG] removed records count=40 +2021-08-21 18:46:53.028 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:46:53.828 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-08-21 18:46:53.834 +08:00 [DBG] removed records count=0 +2021-08-21 18:46:53.834 +08:00 [DBG] Removing outdated records from table 'List'... +2021-08-21 18:46:53.836 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-08-21 18:46:53.845 +08:00 [DBG] removed records count=0 +2021-08-21 18:46:53.845 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-08-21 18:46:53.846 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-08-21 18:46:53.853 +08:00 [DBG] removed records count=0 +2021-08-21 18:46:53.853 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-08-21 18:46:53.854 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-08-21 18:46:53.861 +08:00 [DBG] removed records count=0 +2021-08-21 18:47:01.045 +08:00 [DBG] 742 recurring job(s) processed by scheduler. +2021-08-21 18:47:23.046 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:47:53.060 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:48:23.085 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:48:53.101 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:49:01.048 +08:00 [DBG] 871 recurring job(s) processed by scheduler. +2021-08-21 18:49:23.125 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:49:53.152 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:50:23.168 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:50:53.183 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:51:01.045 +08:00 [DBG] 873 recurring job(s) processed by scheduler. +2021-08-21 18:51:23.207 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:51:50.840 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 18:51:53.233 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:52:23.252 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:52:53.273 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:53:01.286 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 18:53:23.289 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:53:53.306 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:54:23.323 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:54:53.335 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:55:01.544 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 18:55:23.351 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:55:53.367 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:56:23.384 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:56:50.846 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 18:56:53.414 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:57:23.433 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:57:33.607 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 18:57:50.632 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 18:57:53.444 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:58:01.046 +08:00 [DBG] 611 recurring job(s) processed by scheduler. +2021-08-21 18:58:23.462 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:58:53.487 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:59:23.499 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 18:59:33.236 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 18:59:50.373 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 18:59:53.511 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:00:01.057 +08:00 [DBG] 620 recurring job(s) processed by scheduler. +2021-08-21 19:00:23.535 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:00:53.551 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:01:23.578 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:01:48.357 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 19:01:50.857 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 19:01:53.592 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:02:01.056 +08:00 [DBG] 744 recurring job(s) processed by scheduler. +2021-08-21 19:02:23.613 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:02:53.629 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:03:23.651 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:03:48.093 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 19:03:53.667 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:04:01.050 +08:00 [DBG] 769 recurring job(s) processed by scheduler. +2021-08-21 19:04:23.683 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:04:53.705 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:05:23.728 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:05:53.735 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:06:01.045 +08:00 [DBG] 865 recurring job(s) processed by scheduler. +2021-08-21 19:06:23.765 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:06:50.855 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 19:06:53.787 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:07:23.814 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:07:53.824 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:08:01.044 +08:00 [DBG] 874 recurring job(s) processed by scheduler. +2021-08-21 19:08:23.852 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:08:53.879 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:09:23.899 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:09:53.913 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:10:01.228 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 19:10:23.924 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:10:53.933 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:11:23.954 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:11:50.863 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 19:11:53.985 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:12:18.217 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 19:12:23.999 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:12:35.218 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 19:12:52.299 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 19:12:54.005 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:13:01.043 +08:00 [DBG] 512 recurring job(s) processed by scheduler. +2021-08-21 19:13:24.019 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:13:54.033 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:14:24.049 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:14:33.088 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 19:14:50.066 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 19:14:54.066 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:15:01.057 +08:00 [DBG] 646 recurring job(s) processed by scheduler. +2021-08-21 19:15:24.085 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:15:54.110 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:16:24.118 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:16:33.234 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 19:16:50.140 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 19:16:50.866 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 19:16:54.132 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:17:01.045 +08:00 [DBG] 646 recurring job(s) processed by scheduler. +2021-08-21 19:17:24.156 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:17:54.175 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:18:24.184 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:18:48.185 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 19:18:54.191 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:19:01.058 +08:00 [DBG] 752 recurring job(s) processed by scheduler. +2021-08-21 19:19:24.221 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:19:54.226 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:20:24.248 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:20:54.260 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:21:01.050 +08:00 [DBG] 845 recurring job(s) processed by scheduler. +2021-08-21 19:21:24.275 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:21:50.857 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 19:21:54.289 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:22:24.313 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:22:54.323 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:23:01.052 +08:00 [DBG] 870 recurring job(s) processed by scheduler. +2021-08-21 19:23:24.349 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:23:54.377 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:24:24.393 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:24:54.413 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:25:01.297 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 19:25:24.433 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:25:54.454 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:26:24.464 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:26:50.862 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 19:26:54.492 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:27:01.577 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 19:27:24.504 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:27:54.523 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:28:24.536 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:28:54.544 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:29:24.554 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:29:33.864 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 19:29:50.873 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 19:29:54.569 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:30:01.053 +08:00 [DBG] 592 recurring job(s) processed by scheduler. +2021-08-21 19:30:24.588 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:30:54.608 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:31:24.625 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:31:33.373 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 19:31:50.426 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 19:31:50.867 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 19:31:54.632 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:32:01.051 +08:00 [DBG] 626 recurring job(s) processed by scheduler. +2021-08-21 19:32:24.659 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:32:54.671 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:33:24.702 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:33:46.150 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 19:33:46.150 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:33:46.150 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6019ms +2021-08-21 19:33:46.153 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 19:33:46.154 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:33:46.156 +08:00 [INF] Successfully validated the token. +2021-08-21 19:33:46.178 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:33:46.178 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:33:46.179 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 25.7364ms +2021-08-21 19:33:46.268 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 19:33:46.269 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:33:46.269 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.6364ms +2021-08-21 19:33:46.272 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 19:33:46.272 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:33:46.275 +08:00 [INF] Successfully validated the token. +2021-08-21 19:33:46.277 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:33:46.278 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 19:33:46.320 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 19:33:46.321 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 42.9407ms +2021-08-21 19:33:46.321 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:33:46.327 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:33:46.397 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:33:46.397 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:33:46.397 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 125.2958ms +2021-08-21 19:33:53.649 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 19:33:54.711 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:34:01.070 +08:00 [DBG] 325 recurring job(s) processed by scheduler. +2021-08-21 19:34:24.730 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:34:54.740 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:35:24.753 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:35:43.535 +08:00 [DBG] Execution Worker is in the Faulted state now due to an exception, execution will be retried no more than in 00:00:01 +MySqlConnector.MySqlException (0x80004005): Deadlock found when trying to get lock; try restarting transaction + ---> MySqlConnector.MySqlException (0x80004005): Deadlock found when trying to get lock; try restarting transaction + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 49 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 131 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 436 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 264 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 100 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-08-21 19:35:43.535 +08:00 [DBG] Execution loop Worker:3ffbd8ef caught an exception and will be retried in 00:00:01 +MySqlConnector.MySqlException (0x80004005): Deadlock found when trying to get lock; try restarting transaction + ---> MySqlConnector.MySqlException (0x80004005): Deadlock found when trying to get lock; try restarting transaction + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 49 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 131 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 436 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 264 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 100 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-08-21 19:35:43.535 +08:00 [DBG] Execution loop Worker:a29407f8 caught an exception and will be retried in 00:00:04 +MySqlConnector.MySqlException (0x80004005): Deadlock found when trying to get lock; try restarting transaction + ---> MySqlConnector.MySqlException (0x80004005): Deadlock found when trying to get lock; try restarting transaction + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 49 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 131 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 436 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 264 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 100 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-08-21 19:35:43.535 +08:00 [DBG] Execution loop Worker:a29407f8 will be retried in 00:00:04... +2021-08-21 19:35:43.535 +08:00 [DBG] Execution loop Worker:3ffbd8ef will be retried in 00:00:01... +2021-08-21 19:35:50.563 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 19:35:54.771 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:36:01.076 +08:00 [DBG] 520 recurring job(s) processed by scheduler. +2021-08-21 19:36:02.621 +08:00 [INF] Execution Worker recovered from the Faulted state after 00:00:19.0865572 and is in the Running state now +2021-08-21 19:36:24.783 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:36:50.878 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 19:36:54.807 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:37:24.835 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:37:54.842 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:38:01.070 +08:00 [DBG] 795 recurring job(s) processed by scheduler. +2021-08-21 19:38:13.049 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 19:38:13.049 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:38:13.049 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5453ms +2021-08-21 19:38:13.052 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 19:38:13.052 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:38:13.056 +08:00 [INF] Successfully validated the token. +2021-08-21 19:38:13.081 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:38:13.081 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:38:13.081 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 29.3156ms +2021-08-21 19:38:13.613 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 19:38:13.613 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:38:13.613 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4497ms +2021-08-21 19:38:13.615 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 19:38:13.616 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:38:13.618 +08:00 [INF] Successfully validated the token. +2021-08-21 19:38:13.619 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:38:13.620 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 19:38:13.655 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 19:38:13.656 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 35.8866ms +2021-08-21 19:38:13.656 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:38:13.659 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:38:13.681 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:38:13.681 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:38:13.682 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 66.2311ms +2021-08-21 19:38:22.472 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 19:38:22.472 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:38:22.473 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5105ms +2021-08-21 19:38:22.475 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 19:38:22.475 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:38:22.478 +08:00 [INF] Successfully validated the token. +2021-08-21 19:38:22.511 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:38:22.511 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:38:22.512 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 37.0199ms +2021-08-21 19:38:22.625 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 19:38:22.625 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:38:22.625 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.5011ms +2021-08-21 19:38:22.627 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 19:38:22.628 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:38:22.630 +08:00 [INF] Successfully validated the token. +2021-08-21 19:38:22.632 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:38:22.632 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 19:38:22.674 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 19:38:22.675 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 42.5908ms +2021-08-21 19:38:22.675 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:38:22.679 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:38:22.716 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:38:22.716 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:38:22.716 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 88.6510ms +2021-08-21 19:38:24.854 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:38:26.998 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 19:38:26.998 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:38:26.999 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5856ms +2021-08-21 19:38:27.001 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 19:38:27.002 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:38:27.004 +08:00 [INF] Successfully validated the token. +2021-08-21 19:38:27.042 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:38:27.042 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:38:27.042 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 41.1729ms +2021-08-21 19:38:29.326 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 19:38:29.327 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:38:29.327 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4939ms +2021-08-21 19:38:29.329 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 19:38:29.329 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:38:29.332 +08:00 [INF] Successfully validated the token. +2021-08-21 19:38:29.366 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:38:29.366 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:38:29.366 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 36.9938ms +2021-08-21 19:38:29.616 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 19:38:29.617 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:38:29.617 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.5921ms +2021-08-21 19:38:29.619 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 19:38:29.620 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:38:29.622 +08:00 [INF] Successfully validated the token. +2021-08-21 19:38:29.624 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:38:29.624 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 19:38:29.663 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 19:38:29.664 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 39.718ms +2021-08-21 19:38:29.664 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:38:29.667 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:38:29.694 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:38:29.694 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:38:29.694 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 74.7186ms +2021-08-21 19:38:32.146 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 19:38:32.147 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:38:32.147 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5668ms +2021-08-21 19:38:32.149 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 19:38:32.149 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:38:32.152 +08:00 [INF] Successfully validated the token. +2021-08-21 19:38:32.180 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:38:32.180 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:38:32.180 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 31.5069ms +2021-08-21 19:38:32.620 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 19:38:32.621 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:38:32.624 +08:00 [INF] Successfully validated the token. +2021-08-21 19:38:32.625 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:38:32.625 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 19:38:32.664 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 19:38:32.664 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 38.8873ms +2021-08-21 19:38:32.664 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:38:32.667 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:38:32.712 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:38:32.712 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:38:32.712 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 91.7635ms +2021-08-21 19:38:38.019 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 19:38:38.020 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:38:38.020 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.8013ms +2021-08-21 19:38:38.024 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 19:38:38.025 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:38:38.028 +08:00 [INF] Successfully validated the token. +2021-08-21 19:38:38.063 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:38:38.063 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:38:38.064 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 39.3832ms +2021-08-21 19:38:38.622 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 19:38:38.623 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:38:38.623 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4904ms +2021-08-21 19:38:38.625 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 19:38:38.625 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:38:38.627 +08:00 [INF] Successfully validated the token. +2021-08-21 19:38:38.629 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:38:38.629 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 19:38:38.665 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 19:38:38.665 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 36.4307ms +2021-08-21 19:38:38.665 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:38:38.669 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:38:38.695 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:38:38.695 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:38:38.695 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 70.8505ms +2021-08-21 19:38:54.887 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:39:03.109 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 19:39:03.109 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:39:03.109 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5180ms +2021-08-21 19:39:03.112 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 19:39:03.113 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:39:03.115 +08:00 [INF] Successfully validated the token. +2021-08-21 19:39:03.141 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:39:03.141 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:39:03.142 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 29.5572ms +2021-08-21 19:39:03.622 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 19:39:03.622 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:39:03.622 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4585ms +2021-08-21 19:39:03.624 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 19:39:03.625 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:39:03.627 +08:00 [INF] Successfully validated the token. +2021-08-21 19:39:03.628 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:39:03.629 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 19:39:03.668 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 19:39:03.668 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 39.2846ms +2021-08-21 19:39:03.668 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:39:03.673 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:39:03.706 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:39:03.706 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:39:03.707 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 82.3567ms +2021-08-21 19:39:13.049 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 19:39:13.049 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:39:13.049 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.8787ms +2021-08-21 19:39:13.053 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 19:39:13.053 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:39:13.057 +08:00 [INF] Successfully validated the token. +2021-08-21 19:39:13.080 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:39:13.080 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:39:13.080 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 27.4239ms +2021-08-21 19:39:13.616 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 19:39:13.616 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:39:13.616 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.5360ms +2021-08-21 19:39:13.619 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 19:39:13.619 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:39:13.622 +08:00 [INF] Successfully validated the token. +2021-08-21 19:39:13.624 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:39:13.624 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 19:39:13.660 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 19:39:13.660 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 36.2887ms +2021-08-21 19:39:13.661 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:39:13.664 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:39:13.692 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:39:13.692 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:39:13.692 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 73.5267ms +2021-08-21 19:39:17.756 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 19:39:17.757 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:39:17.757 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5570ms +2021-08-21 19:39:17.759 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 19:39:17.760 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:39:17.763 +08:00 [INF] Successfully validated the token. +2021-08-21 19:39:17.795 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:39:17.795 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:39:17.796 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 36.6819ms +2021-08-21 19:39:17.890 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 19:39:17.891 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:39:17.893 +08:00 [INF] Successfully validated the token. +2021-08-21 19:39:17.894 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:39:17.894 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 19:39:17.941 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 19:39:17.942 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 47.1884ms +2021-08-21 19:39:17.942 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:39:17.946 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:39:17.975 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:39:17.975 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:39:17.976 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 85.2922ms +2021-08-21 19:39:22.781 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 19:39:22.782 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:39:22.782 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6209ms +2021-08-21 19:39:22.784 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 19:39:22.784 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:39:22.791 +08:00 [INF] Successfully validated the token. +2021-08-21 19:39:22.816 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:39:22.816 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:39:22.816 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 32.4895ms +2021-08-21 19:39:22.927 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 19:39:22.927 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:39:22.927 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.6327ms +2021-08-21 19:39:22.932 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 19:39:22.932 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:39:22.935 +08:00 [INF] Successfully validated the token. +2021-08-21 19:39:22.937 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:39:22.937 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 19:39:22.978 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 19:39:22.978 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 41.0743ms +2021-08-21 19:39:22.979 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:39:22.983 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:39:23.015 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:39:23.015 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:39:23.015 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 83.5401ms +2021-08-21 19:39:24.909 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:39:27.830 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 19:39:27.830 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:39:27.830 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5563ms +2021-08-21 19:39:27.832 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 19:39:27.833 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:39:27.835 +08:00 [INF] Successfully validated the token. +2021-08-21 19:39:27.860 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:39:27.860 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:39:27.860 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 27.9675ms +2021-08-21 19:39:27.995 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 19:39:27.996 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:39:27.996 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.7177ms +2021-08-21 19:39:28.000 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 19:39:28.001 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:39:28.004 +08:00 [INF] Successfully validated the token. +2021-08-21 19:39:28.006 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:39:28.006 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 19:39:28.052 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 19:39:28.053 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 46.9606ms +2021-08-21 19:39:28.053 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:39:28.058 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:39:28.091 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:39:28.091 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:39:28.091 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 91.1405ms +2021-08-21 19:39:34.170 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 19:39:34.170 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:39:34.170 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6023ms +2021-08-21 19:39:34.174 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 19:39:34.174 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:39:34.177 +08:00 [INF] Successfully validated the token. +2021-08-21 19:39:34.203 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:39:34.203 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:39:34.203 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 29.7298ms +2021-08-21 19:39:34.623 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 19:39:34.623 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:39:34.623 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.7143ms +2021-08-21 19:39:34.626 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 19:39:34.626 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:39:34.629 +08:00 [INF] Successfully validated the token. +2021-08-21 19:39:34.630 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:39:34.631 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 19:39:34.670 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 19:39:34.670 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 39.5273ms +2021-08-21 19:39:34.670 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:39:34.674 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:39:34.714 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:39:34.714 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:39:34.714 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 88.1939ms +2021-08-21 19:39:42.828 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 19:39:42.829 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:39:42.829 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4680ms +2021-08-21 19:39:42.831 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 19:39:42.831 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:39:42.833 +08:00 [INF] Successfully validated the token. +2021-08-21 19:39:42.862 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:39:42.862 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:39:42.862 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 31.5130ms +2021-08-21 19:39:43.626 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 19:39:43.626 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:39:43.627 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 2.2306ms +2021-08-21 19:39:43.631 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 19:39:43.631 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:39:43.635 +08:00 [INF] Successfully validated the token. +2021-08-21 19:39:43.637 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:39:43.637 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 19:39:43.681 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 19:39:43.682 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 44.6815ms +2021-08-21 19:39:43.682 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:39:43.686 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:39:43.716 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:39:43.716 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:39:43.716 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 85.7607ms +2021-08-21 19:39:48.925 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 19:39:48.926 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:39:48.926 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6098ms +2021-08-21 19:39:48.928 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 19:39:48.929 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:39:48.932 +08:00 [INF] Successfully validated the token. +2021-08-21 19:39:48.956 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:39:48.956 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:39:48.956 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 27.7338ms +2021-08-21 19:39:49.624 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 19:39:49.625 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:39:49.625 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.8460ms +2021-08-21 19:39:49.627 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 19:39:49.628 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:39:49.631 +08:00 [INF] Successfully validated the token. +2021-08-21 19:39:49.633 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:39:49.633 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 19:39:49.676 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 19:39:49.676 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 42.6133ms +2021-08-21 19:39:49.676 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:39:49.681 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:39:49.709 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:39:49.709 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:39:49.710 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 82.1278ms +2021-08-21 19:39:54.924 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:40:01.095 +08:00 [DBG] 650 recurring job(s) processed by scheduler. +2021-08-21 19:40:02.129 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 19:40:02.129 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:40:02.130 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5534ms +2021-08-21 19:40:02.132 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 19:40:02.132 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:40:02.135 +08:00 [INF] Successfully validated the token. +2021-08-21 19:40:02.160 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:40:02.160 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:40:02.160 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 28.1334ms +2021-08-21 19:40:02.603 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 19:40:02.603 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:40:02.603 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.5300ms +2021-08-21 19:40:02.606 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 19:40:02.606 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:40:02.610 +08:00 [INF] Successfully validated the token. +2021-08-21 19:40:02.611 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:40:02.611 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 19:40:02.649 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 19:40:02.649 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 37.8927ms +2021-08-21 19:40:02.649 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:40:02.654 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:40:02.689 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:40:02.690 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:40:02.690 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 84.3190ms +2021-08-21 19:40:24.944 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:40:35.420 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 19:40:35.420 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:40:35.420 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4762ms +2021-08-21 19:40:35.423 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 19:40:35.423 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:40:35.427 +08:00 [INF] Successfully validated the token. +2021-08-21 19:40:35.461 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:40:35.461 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:40:35.462 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 38.8684ms +2021-08-21 19:40:35.610 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 19:40:35.611 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:40:35.611 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.5675ms +2021-08-21 19:40:35.613 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 19:40:35.613 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:40:35.616 +08:00 [INF] Successfully validated the token. +2021-08-21 19:40:35.618 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:40:35.618 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 19:40:35.661 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 19:40:35.662 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 43.1534ms +2021-08-21 19:40:35.662 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:40:35.666 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:40:35.712 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:40:35.712 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:40:35.713 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 99.5022ms +2021-08-21 19:40:47.220 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 19:40:47.221 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:40:47.221 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4745ms +2021-08-21 19:40:47.223 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 19:40:47.224 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:40:47.227 +08:00 [INF] Successfully validated the token. +2021-08-21 19:40:47.260 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:40:47.260 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:40:47.260 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 37.0715ms +2021-08-21 19:40:47.607 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 19:40:47.607 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:40:47.607 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.5736ms +2021-08-21 19:40:47.609 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 19:40:47.609 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:40:47.612 +08:00 [INF] Successfully validated the token. +2021-08-21 19:40:47.613 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:40:47.613 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 19:40:47.653 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 19:40:47.653 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 39.8333ms +2021-08-21 19:40:47.653 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:40:47.657 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:40:47.695 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:40:47.695 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:40:47.696 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 86.7881ms +2021-08-21 19:40:50.411 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 19:40:50.412 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:40:50.412 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5602ms +2021-08-21 19:40:50.415 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 19:40:50.415 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:40:50.418 +08:00 [INF] Successfully validated the token. +2021-08-21 19:40:50.462 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:40:50.462 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:40:50.462 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 47.3736ms +2021-08-21 19:40:50.608 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 19:40:50.609 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:40:50.612 +08:00 [INF] Successfully validated the token. +2021-08-21 19:40:50.613 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:40:50.613 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 19:40:50.657 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 19:40:50.658 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 44.2583ms +2021-08-21 19:40:50.658 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:40:50.662 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:40:50.692 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:40:50.692 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:40:50.693 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 84.7369ms +2021-08-21 19:40:54.962 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:41:18.177 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 19:41:18.177 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:41:18.178 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5926ms +2021-08-21 19:41:18.180 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 19:41:18.180 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:41:18.184 +08:00 [INF] Successfully validated the token. +2021-08-21 19:41:18.206 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:41:18.206 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:41:18.206 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.4429ms +2021-08-21 19:41:18.621 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 19:41:18.621 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:41:18.621 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4693ms +2021-08-21 19:41:18.623 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 19:41:18.624 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:41:18.628 +08:00 [INF] Successfully validated the token. +2021-08-21 19:41:18.629 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:41:18.630 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 19:41:18.669 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 19:41:18.669 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 39.4078ms +2021-08-21 19:41:18.669 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:41:18.673 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:41:18.714 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:41:18.715 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:41:18.715 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 91.5853ms +2021-08-21 19:41:22.387 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 19:41:22.387 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:41:22.387 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6023ms +2021-08-21 19:41:22.389 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 19:41:22.390 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:41:22.394 +08:00 [INF] Successfully validated the token. +2021-08-21 19:41:22.429 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:41:22.429 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:41:22.429 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 39.6558ms +2021-08-21 19:41:22.619 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 19:41:22.619 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:41:22.621 +08:00 [INF] Successfully validated the token. +2021-08-21 19:41:22.623 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:41:22.623 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 19:41:22.665 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 19:41:22.665 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 42.3586ms +2021-08-21 19:41:22.665 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:41:22.670 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:41:22.719 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:41:22.719 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:41:22.719 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 100.6462ms +2021-08-21 19:41:24.976 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:41:37.234 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 19:41:37.234 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:41:37.234 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5268ms +2021-08-21 19:41:37.237 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 19:41:37.237 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:41:37.241 +08:00 [INF] Successfully validated the token. +2021-08-21 19:41:37.265 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:41:37.265 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:41:37.265 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 27.9852ms +2021-08-21 19:41:37.639 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 19:41:37.640 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:41:37.640 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.5594ms +2021-08-21 19:41:37.643 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 19:41:37.643 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:41:37.646 +08:00 [INF] Successfully validated the token. +2021-08-21 19:41:37.649 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:41:37.649 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 19:41:37.693 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 19:41:37.693 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 44.2076ms +2021-08-21 19:41:37.693 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:41:37.698 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:41:37.733 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:41:37.733 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:41:37.733 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 90.3627ms +2021-08-21 19:41:42.393 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 19:41:42.393 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:41:42.393 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6878ms +2021-08-21 19:41:42.397 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 19:41:42.397 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:41:42.400 +08:00 [INF] Successfully validated the token. +2021-08-21 19:41:42.423 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:41:42.423 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:41:42.424 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.8815ms +2021-08-21 19:41:44.756 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 19:41:44.756 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:41:44.756 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4785ms +2021-08-21 19:41:44.758 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 19:41:44.759 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:41:44.762 +08:00 [INF] Successfully validated the token. +2021-08-21 19:41:44.783 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:41:44.783 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:41:44.783 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 24.6157ms +2021-08-21 19:41:45.613 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 19:41:45.614 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:41:45.614 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.6868ms +2021-08-21 19:41:45.616 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 19:41:45.616 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:41:45.619 +08:00 [INF] Successfully validated the token. +2021-08-21 19:41:45.620 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:41:45.620 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 19:41:45.656 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 19:41:45.656 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 35.4759ms +2021-08-21 19:41:45.656 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:41:45.660 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:41:45.685 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:41:45.685 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:41:45.686 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 69.4978ms +2021-08-21 19:41:50.899 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 19:41:54.985 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:42:01.369 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 19:42:25.007 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:42:28.624 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 19:42:28.625 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:42:28.625 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4986ms +2021-08-21 19:42:28.627 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 19:42:28.627 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:42:28.631 +08:00 [INF] Successfully validated the token. +2021-08-21 19:42:28.667 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:42:28.667 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:42:28.667 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 39.9770ms +2021-08-21 19:42:28.772 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 19:42:28.772 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:42:28.772 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4982ms +2021-08-21 19:42:28.774 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 19:42:28.775 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:42:28.778 +08:00 [INF] Successfully validated the token. +2021-08-21 19:42:28.780 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:42:28.780 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 19:42:28.823 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 19:42:28.824 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 43.2691ms +2021-08-21 19:42:28.824 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:42:28.828 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:42:28.858 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:42:28.859 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:42:28.859 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 84.4151ms +2021-08-21 19:42:34.980 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 19:42:34.981 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:42:34.981 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4604ms +2021-08-21 19:42:34.983 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 19:42:34.984 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:42:34.987 +08:00 [INF] Successfully validated the token. +2021-08-21 19:42:35.011 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:42:35.011 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:42:35.011 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 27.8114ms +2021-08-21 19:42:35.610 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 19:42:35.610 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:42:35.611 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.6190ms +2021-08-21 19:42:35.613 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 19:42:35.613 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:42:35.615 +08:00 [INF] Successfully validated the token. +2021-08-21 19:42:35.617 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:42:35.617 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 19:42:35.662 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 19:42:35.662 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 45.0194ms +2021-08-21 19:42:35.662 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:42:35.666 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:42:35.692 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:42:35.692 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:42:35.692 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 79.5683ms +2021-08-21 19:42:55.019 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:43:25.049 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:43:55.072 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:44:19.567 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 19:44:25.078 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:44:37.614 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 19:44:55.092 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:44:55.614 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 19:45:01.061 +08:00 [DBG] 308 recurring job(s) processed by scheduler. +2021-08-21 19:45:25.115 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:45:55.138 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:46:25.146 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:46:34.058 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 19:46:50.914 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 19:46:51.905 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 19:46:53.740 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-08-21 19:46:53.742 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-08-21 19:46:53.748 +08:00 [DBG] removed records count=0 +2021-08-21 19:46:53.748 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-08-21 19:46:53.750 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-08-21 19:46:53.756 +08:00 [DBG] removed records count=0 +2021-08-21 19:46:53.756 +08:00 [DBG] Removing outdated records from table 'List'... +2021-08-21 19:46:53.758 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-08-21 19:46:53.764 +08:00 [DBG] removed records count=0 +2021-08-21 19:46:53.764 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-08-21 19:46:53.765 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-08-21 19:46:53.772 +08:00 [DBG] removed records count=0 +2021-08-21 19:46:53.772 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-08-21 19:46:53.773 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-08-21 19:46:53.780 +08:00 [DBG] removed records count=0 +2021-08-21 19:46:55.159 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:47:01.078 +08:00 [DBG] 517 recurring job(s) processed by scheduler. +2021-08-21 19:47:25.176 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:47:55.196 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:48:25.203 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:48:35.360 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 19:48:54.681 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 19:48:55.228 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:49:01.061 +08:00 [DBG] 321 recurring job(s) processed by scheduler. +2021-08-21 19:49:25.238 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:49:55.258 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:50:25.282 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:50:49.034 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 19:50:55.290 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:51:01.048 +08:00 [DBG] 677 recurring job(s) processed by scheduler. +2021-08-21 19:51:25.320 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:51:50.925 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 19:51:55.344 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:52:25.365 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:52:55.361 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:53:01.049 +08:00 [DBG] 832 recurring job(s) processed by scheduler. +2021-08-21 19:53:25.381 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:53:55.404 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:54:25.425 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:54:55.432 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:55:01.062 +08:00 [DBG] 721 recurring job(s) processed by scheduler. +2021-08-21 19:55:25.444 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:55:32.537 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 19:55:32.538 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:55:32.538 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.7279ms +2021-08-21 19:55:32.540 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 19:55:32.540 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:55:32.543 +08:00 [INF] Successfully validated the token. +2021-08-21 19:55:32.544 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:55:32.544 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 19:55:32.581 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 19:55:32.581 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 36.6158ms +2021-08-21 19:55:32.581 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:55:32.584 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:55:32.620 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:55:32.620 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:55:32.620 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 80.2764ms +2021-08-21 19:55:55.459 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:56:25.474 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:56:50.881 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 19:56:55.497 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:57:01.254 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 19:57:25.515 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:57:55.524 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:58:21.617 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 19:58:21.617 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:58:21.618 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5632ms +2021-08-21 19:58:21.621 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 19:58:21.621 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:58:21.624 +08:00 [INF] Successfully validated the token. +2021-08-21 19:58:21.657 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:58:21.658 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:58:21.658 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 37.3146ms +2021-08-21 19:58:21.715 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 19:58:21.716 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:58:21.716 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.5058ms +2021-08-21 19:58:21.718 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 19:58:21.718 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:58:21.720 +08:00 [INF] Successfully validated the token. +2021-08-21 19:58:21.722 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:58:21.722 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 19:58:21.758 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 19:58:21.759 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 36.8385ms +2021-08-21 19:58:21.759 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:58:21.764 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:58:21.793 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:58:21.793 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:58:21.793 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 75.4497ms +2021-08-21 19:58:25.550 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:58:50.768 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 19:58:50.768 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:58:50.768 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5727ms +2021-08-21 19:58:50.771 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 19:58:50.771 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:58:50.774 +08:00 [INF] Successfully validated the token. +2021-08-21 19:58:50.811 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:58:50.811 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:58:50.811 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 40.6898ms +2021-08-21 19:58:50.902 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 19:58:50.903 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:58:50.903 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.7858ms +2021-08-21 19:58:50.909 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 19:58:50.909 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:58:50.912 +08:00 [INF] Successfully validated the token. +2021-08-21 19:58:50.914 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:58:50.914 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 19:58:50.956 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 19:58:50.957 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 42.1908ms +2021-08-21 19:58:50.957 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:58:50.961 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:58:50.993 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:58:50.993 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:58:50.993 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 84.1797ms +2021-08-21 19:58:55.561 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:58:56.229 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 19:58:56.229 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:58:56.229 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4546ms +2021-08-21 19:58:56.231 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 19:58:56.231 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:58:56.234 +08:00 [INF] Successfully validated the token. +2021-08-21 19:58:56.257 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:58:56.257 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:58:56.258 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.5707ms +2021-08-21 19:58:56.350 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 19:58:56.351 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:58:56.351 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4725ms +2021-08-21 19:58:56.353 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 19:58:56.353 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:58:56.356 +08:00 [INF] Successfully validated the token. +2021-08-21 19:58:56.357 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:58:56.357 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 19:58:56.394 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 19:58:56.394 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 37.3917ms +2021-08-21 19:58:56.394 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:58:56.399 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:58:56.434 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:58:56.434 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:58:56.434 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 81.4184ms +2021-08-21 19:59:01.454 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-21 19:59:08.915 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 19:59:08.915 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:59:08.915 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5486ms +2021-08-21 19:59:08.917 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 19:59:08.918 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:59:08.921 +08:00 [INF] Successfully validated the token. +2021-08-21 19:59:08.955 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:59:08.955 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:59:08.955 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 37.7748ms +2021-08-21 19:59:09.027 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 19:59:09.027 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:59:09.027 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4589ms +2021-08-21 19:59:09.029 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 19:59:09.029 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:59:09.032 +08:00 [INF] Successfully validated the token. +2021-08-21 19:59:09.033 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:59:09.033 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 19:59:09.074 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 19:59:09.076 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 42.1847ms +2021-08-21 19:59:09.076 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:59:09.081 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:59:09.119 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:59:09.119 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:59:09.119 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 90.2905ms +2021-08-21 19:59:18.158 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 19:59:18.158 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:59:18.158 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6873ms +2021-08-21 19:59:18.161 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 19:59:18.161 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:59:18.163 +08:00 [INF] Successfully validated the token. +2021-08-21 19:59:18.197 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:59:18.197 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:59:18.197 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 36.7235ms +2021-08-21 19:59:18.519 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 19:59:18.520 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:59:18.520 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4975ms +2021-08-21 19:59:18.522 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 19:59:18.522 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:59:18.524 +08:00 [INF] Successfully validated the token. +2021-08-21 19:59:18.525 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:59:18.525 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 19:59:18.562 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 19:59:18.562 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 36.6576ms +2021-08-21 19:59:18.562 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:59:18.565 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:59:18.590 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:59:18.590 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:59:18.591 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 69.1073ms +2021-08-21 19:59:20.866 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 19:59:20.867 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:59:20.867 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4395ms +2021-08-21 19:59:20.869 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 19:59:20.870 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:59:20.872 +08:00 [INF] Successfully validated the token. +2021-08-21 19:59:20.906 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:59:20.906 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:59:20.906 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 36.9501ms +2021-08-21 19:59:20.993 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 19:59:20.993 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:59:20.995 +08:00 [INF] Successfully validated the token. +2021-08-21 19:59:20.997 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:59:20.997 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 19:59:21.040 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 19:59:21.040 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 43.4032ms +2021-08-21 19:59:21.040 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:59:21.045 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:59:21.078 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:59:21.078 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:59:21.078 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 85.7505ms +2021-08-21 19:59:25.583 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:59:55.607 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 19:59:57.043 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 19:59:57.043 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:59:57.043 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5229ms +2021-08-21 19:59:57.045 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 19:59:57.045 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:59:57.048 +08:00 [INF] Successfully validated the token. +2021-08-21 19:59:57.079 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:59:57.079 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:59:57.080 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 34.5690ms +2021-08-21 19:59:57.523 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 19:59:57.523 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:59:57.523 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4813ms +2021-08-21 19:59:57.525 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 19:59:57.526 +08:00 [INF] CORS policy execution successful. +2021-08-21 19:59:57.528 +08:00 [INF] Successfully validated the token. +2021-08-21 19:59:57.530 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:59:57.530 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 19:59:57.566 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 19:59:57.566 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 36.6402ms +2021-08-21 19:59:57.566 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 19:59:57.571 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:59:57.610 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:59:57.610 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 19:59:57.610 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 84.7991ms +2021-08-21 20:00:00.294 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 20:00:00.294 +08:00 [INF] CORS policy execution successful. +2021-08-21 20:00:00.294 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5086ms +2021-08-21 20:00:00.297 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 20:00:00.297 +08:00 [INF] CORS policy execution successful. +2021-08-21 20:00:00.300 +08:00 [INF] Successfully validated the token. +2021-08-21 20:00:00.324 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 20:00:00.324 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 20:00:00.324 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 27.3067ms +2021-08-21 20:00:02.520 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-21 20:00:02.521 +08:00 [INF] CORS policy execution successful. +2021-08-21 20:00:02.521 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5394ms +2021-08-21 20:00:02.523 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-21 20:00:02.524 +08:00 [INF] CORS policy execution successful. +2021-08-21 20:00:02.526 +08:00 [INF] Successfully validated the token. +2021-08-21 20:00:02.547 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 20:00:02.547 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 20:00:02.548 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 24.4118ms +2021-08-21 20:00:02.631 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-21 20:00:02.631 +08:00 [INF] CORS policy execution successful. +2021-08-21 20:00:02.632 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.5542ms +2021-08-21 20:00:02.634 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-21 20:00:02.635 +08:00 [INF] CORS policy execution successful. +2021-08-21 20:00:02.639 +08:00 [INF] Successfully validated the token. +2021-08-21 20:00:02.641 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 20:00:02.641 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-21 20:00:02.685 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-21 20:00:02.686 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 44.4121ms +2021-08-21 20:00:02.686 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-21 20:00:02.690 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 20:00:02.715 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 20:00:02.715 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-21 20:00:02.716 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 81.4261ms +2021-08-21 20:00:25.635 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 20:00:55.660 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 20:01:25.668 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 20:01:34.805 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 20:01:50.874 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-21 20:01:54.053 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-21 20:01:55.678 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 20:02:01.057 +08:00 [DBG] 347 recurring job(s) processed by scheduler. +2021-08-21 20:02:25.683 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 20:02:55.696 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-21 20:03:25.708 +08:00 [DBG] Server szqh003802a:11564:eeaf7571 heartbeat successfully sent +2021-08-22 01:13:17.521 +08:00 [INF] Starting CompanyName.ProjectName.HttpApi.Host. +2021-08-22 01:13:36.823 +08:00 [INF] User profile is available. Using 'C:\Users\wangjun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. +2021-08-22 01:13:36.953 +08:00 [INF] Loaded ABP modules: +2021-08-22 01:13:36.953 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiHostModule +2021-08-22 01:13:36.953 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiModule +2021-08-22 01:13:36.953 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationContractsModule +2021-08-22 01:13:36.953 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainSharedModule +2021-08-22 01:13:36.953 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule +2021-08-22 01:13:36.953 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainSharedModule +2021-08-22 01:13:36.953 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule +2021-08-22 01:13:36.953 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2021-08-22 01:13:36.953 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule +2021-08-22 01:13:36.953 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2021-08-22 01:13:36.953 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2021-08-22 01:13:36.953 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2021-08-22 01:13:36.953 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule +2021-08-22 01:13:36.953 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2021-08-22 01:13:36.953 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule +2021-08-22 01:13:36.953 +08:00 [INF] - Volo.Abp.Data.AbpDataModule +2021-08-22 01:13:36.953 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule +2021-08-22 01:13:36.953 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2021-08-22 01:13:36.953 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule +2021-08-22 01:13:36.953 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2021-08-22 01:13:36.953 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2021-08-22 01:13:36.953 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule +2021-08-22 01:13:36.953 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule +2021-08-22 01:13:36.953 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainSharedModule +2021-08-22 01:13:36.953 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2021-08-22 01:13:36.953 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2021-08-22 01:13:36.953 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule +2021-08-22 01:13:36.953 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule +2021-08-22 01:13:36.953 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2021-08-22 01:13:36.953 +08:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2021-08-22 01:13:36.953 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2021-08-22 01:13:36.953 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule +2021-08-22 01:13:36.954 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationContractsModule +2021-08-22 01:13:36.954 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainSharedModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.UI.AbpUiModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule +2021-08-22 01:13:36.954 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementHttpApiModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.Caching.StackExchangeRedis.AbpCachingStackExchangeRedisModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule +2021-08-22 01:13:36.954 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationModule +2021-08-22 01:13:36.954 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.PermissionManagement.IdentityServer.AbpPermissionManagementDomainIdentityServerModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule +2021-08-22 01:13:36.954 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule +2021-08-22 01:13:36.954 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainModule +2021-08-22 01:13:36.954 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainSharedModule +2021-08-22 01:13:36.954 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationModule +2021-08-22 01:13:36.954 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreDbMigrationsModule +2021-08-22 01:13:36.954 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.IdentityServer.EntityFrameworkCore.AbpIdentityServerEntityFrameworkCoreModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.MySQL.AbpEntityFrameworkCoreMySQLModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.BackgroundJobs.EntityFrameworkCore.AbpBackgroundJobsEntityFrameworkCoreModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule +2021-08-22 01:13:36.954 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.FreeSqlMySql.QueryManagementFreeSqlMySqlModule +2021-08-22 01:13:36.954 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.EntityFrameworkCore.DataDictionaryManagementEntityFrameworkCoreModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.BackgroundJobs.Hangfire.AbpBackgroundJobsHangfireModule +2021-08-22 01:13:36.954 +08:00 [INF] - Volo.Abp.Hangfire.AbpHangfireModule +2021-08-22 01:13:37.046 +08:00 [DBG] Started background worker: Volo.Abp.BackgroundJobs.BackgroundJobWorker +2021-08-22 01:13:37.049 +08:00 [DBG] Started background worker: Volo.Abp.IdentityServer.Tokens.TokenCleanupBackgroundWorker +2021-08-22 01:13:37.326 +08:00 [INF] DB tables already exist. Exit install +2021-08-22 01:13:37.343 +08:00 [INF] Starting Hangfire Server using job storage: 'Server: localhost@CompanyNameProjectNameHangfireDB' +2021-08-22 01:13:37.343 +08:00 [INF] Using the following options for SQL Server job storage: +2021-08-22 01:13:37.343 +08:00 [INF] Queue poll interval: 00:00:15. +2021-08-22 01:13:37.344 +08:00 [INF] Using the following options for Hangfire Server: + Worker count: 20 + Listening queues: 'default' + Shutdown timeout: 00:00:15 + Schedule polling interval: 00:00:15 +2021-08-22 01:13:37.370 +08:00 [DBG] Execution loop BackgroundServerProcess:66dfb99d has started in 4.3032 ms +2021-08-22 01:13:37.495 +08:00 [INF] Server szqh003802a:27900:a3b88d92 successfully announced in 108.9778 ms +2021-08-22 01:13:37.529 +08:00 [DBG] Execution loop ServerHeartbeatProcess:00490494 has started in 32.5416 ms +2021-08-22 01:13:37.529 +08:00 [INF] Server szqh003802a:27900:a3b88d92 is starting the registered dispatchers: ServerWatchdog, ServerJobCancellationWatcher, ExpirationManager, CountersAggregator, Worker, DelayedJobScheduler, RecurringJobScheduler... +2021-08-22 01:13:37.531 +08:00 [DBG] Execution loop ServerWatchdog:da26bae7 has started in 1.7273 ms +2021-08-22 01:13:37.532 +08:00 [DBG] Execution loop ServerJobCancellationWatcher:66c25c6b has started in 2.6927 ms +2021-08-22 01:13:37.535 +08:00 [DBG] Execution loop ExpirationManager:b71a4a0a has started in 3.038 ms +2021-08-22 01:13:37.535 +08:00 [DBG] Execution loop CountersAggregator:918d4056 has started in 2.7321 ms +2021-08-22 01:13:37.537 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-22 01:13:37.537 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-08-22 01:13:37.538 +08:00 [DBG] Execution loop Worker:f590509e has started in 4.2723 ms +2021-08-22 01:13:37.540 +08:00 [DBG] Execution loop Worker:f48c737b has started in 5.8574 ms +2021-08-22 01:13:37.541 +08:00 [DBG] Execution loop Worker:4d34b2da has started in 7.4783 ms +2021-08-22 01:13:37.542 +08:00 [DBG] Execution loop Worker:5837ca0a has started in 8.9216 ms +2021-08-22 01:13:37.546 +08:00 [DBG] Execution loop Worker:4abd9a0b has started in 13.1334 ms +2021-08-22 01:13:37.549 +08:00 [DBG] Execution loop Worker:2282422a has started in 15.5526 ms +2021-08-22 01:13:37.550 +08:00 [DBG] Execution loop Worker:af6b8564 has started in 16.5437 ms +2021-08-22 01:13:37.552 +08:00 [DBG] Execution loop Worker:a5f5540f has started in 18.412 ms +2021-08-22 01:13:37.553 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-08-22 01:13:37.554 +08:00 [DBG] Execution loop Worker:cc98899a has started in 20.5652 ms +2021-08-22 01:13:37.556 +08:00 [DBG] Execution loop Worker:18273359 has started in 22.8754 ms +2021-08-22 01:13:37.561 +08:00 [DBG] Execution loop Worker:304a5aba has started in 27.459 ms +2021-08-22 01:13:37.564 +08:00 [DBG] Execution loop Worker:11061367 has started in 30.6266 ms +2021-08-22 01:13:37.568 +08:00 [DBG] Execution loop Worker:d3c86506 has started in 34.1098 ms +2021-08-22 01:13:37.568 +08:00 [INF] 1 servers were removed due to timeout +2021-08-22 01:13:37.572 +08:00 [DBG] Execution loop Worker:45de11bf has started in 38.9092 ms +2021-08-22 01:13:37.580 +08:00 [DBG] Execution loop Worker:4796567e has started in 46.4125 ms +2021-08-22 01:13:37.586 +08:00 [DBG] Execution loop Worker:bd99c6ca has started in 52.462 ms +2021-08-22 01:13:37.593 +08:00 [DBG] Execution loop Worker:34a70c57 has started in 59.8015 ms +2021-08-22 01:13:37.599 +08:00 [DBG] Execution loop Worker:2810af4f has started in 65.3283 ms +2021-08-22 01:13:37.606 +08:00 [DBG] Execution loop Worker:4c71eb9c has started in 72.6687 ms +2021-08-22 01:13:37.630 +08:00 [DBG] removed records count=3 +2021-08-22 01:13:37.631 +08:00 [DBG] Execution loop Worker:ec68d4df has started in 97.8164 ms +2021-08-22 01:13:37.634 +08:00 [DBG] Execution loop DelayedJobScheduler:11999be2 has started in 25.6803 ms +2021-08-22 01:13:37.634 +08:00 [INF] Server szqh003802a:27900:a3b88d92 all the dispatchers started +2021-08-22 01:13:37.636 +08:00 [DBG] Execution loop RecurringJobScheduler:7545ff11 has started in 13.9654 ms +2021-08-22 01:13:37.971 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-22 01:13:38.139 +08:00 [INF] Initialized all ABP modules. +2021-08-22 01:13:38.222 +08:00 [INF] Now listening on: http://localhost:44315 +2021-08-22 01:13:38.223 +08:00 [INF] Application started. Press Ctrl+C to shut down. +2021-08-22 01:13:38.223 +08:00 [INF] Hosting environment: Development +2021-08-22 01:13:38.223 +08:00 [INF] Content root path: D:\abp\aspnet-core\services\src\CompanyName.ProjectName.HttpApi.Host +2021-08-22 01:13:38.636 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-08-22 01:13:38.640 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/ - - +2021-08-22 01:13:38.648 +08:00 [DBG] removed records count=0 +2021-08-22 01:13:38.648 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-08-22 01:13:38.651 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-08-22 01:13:38.670 +08:00 [DBG] removed records count=98 +2021-08-22 01:13:39.678 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-08-22 01:13:39.686 +08:00 [DBG] removed records count=0 +2021-08-22 01:13:39.686 +08:00 [DBG] Removing outdated records from table 'List'... +2021-08-22 01:13:39.688 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-08-22 01:13:39.699 +08:00 [DBG] removed records count=0 +2021-08-22 01:13:39.699 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-08-22 01:13:39.701 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-08-22 01:13:39.712 +08:00 [DBG] removed records count=0 +2021-08-22 01:13:39.712 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-08-22 01:13:39.714 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-08-22 01:13:39.723 +08:00 [DBG] removed records count=0 +2021-08-22 01:13:48.385 +08:00 [WRN] It was not possible to connect to the redis server(s). UnableToConnect on localhost:6379/Interactive, Initializing/NotStarted, last: NONE, origin: BeginConnectAsync, outstanding: 0, last-read: 2s ago, last-write: 2s ago, keep-alive: 60s, state: Connecting, mgr: 10 of 10 available, last-heartbeat: never, global: 9s ago, v: 2.1.58.34321 +StackExchange.Redis.RedisConnectionException: It was not possible to connect to the redis server(s). UnableToConnect on localhost:6379/Interactive, Initializing/NotStarted, last: NONE, origin: BeginConnectAsync, outstanding: 0, last-read: 2s ago, last-write: 2s ago, keep-alive: 60s, state: Connecting, mgr: 10 of 10 available, last-heartbeat: never, global: 9s ago, v: 2.1.58.34321 + at StackExchange.Redis.ConnectionMultiplexer.ConnectImplAsync(ConfigurationOptions configuration, TextWriter log) in /_/src/StackExchange.Redis/ConnectionMultiplexer.cs:line 861 + at Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache.ConnectAsync(CancellationToken token) + at Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache.GetAndRefreshAsync(String key, Boolean getData, CancellationToken token) + at Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache.GetAsync(String key, CancellationToken token) + at Volo.Abp.Caching.DistributedCache`2.GetAsync(TCacheKey key, Nullable`1 hideErrors, Boolean considerUow, CancellationToken token) +2021-08-22 01:13:52.732 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 01:13:52.859 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-22 01:13:57.802 +08:00 [WRN] It was not possible to connect to the redis server(s). UnableToConnect on localhost:6379/Interactive, Initializing/NotStarted, last: NONE, origin: BeginConnectAsync, outstanding: 0, last-read: 2s ago, last-write: 2s ago, keep-alive: 60s, state: Connecting, mgr: 10 of 10 available, last-heartbeat: never, global: 18s ago, v: 2.1.58.34321 +StackExchange.Redis.RedisConnectionException: It was not possible to connect to the redis server(s). UnableToConnect on localhost:6379/Interactive, Initializing/NotStarted, last: NONE, origin: BeginConnectAsync, outstanding: 0, last-read: 2s ago, last-write: 2s ago, keep-alive: 60s, state: Connecting, mgr: 10 of 10 available, last-heartbeat: never, global: 18s ago, v: 2.1.58.34321 + at StackExchange.Redis.ConnectionMultiplexer.ConnectImplAsync(ConfigurationOptions configuration, TextWriter log) in /_/src/StackExchange.Redis/ConnectionMultiplexer.cs:line 861 + at Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache.ConnectAsync(CancellationToken token) + at Volo.Abp.Caching.StackExchangeRedis.AbpRedisCache.SetManyAsync(IEnumerable`1 items, DistributedCacheEntryOptions options, CancellationToken token) + at Volo.Abp.Caching.DistributedCache`2.<>c__DisplayClass54_0.<g__SetRealCache|0>d.MoveNext() +2021-08-22 01:14:07.087 +08:00 [WRN] It was not possible to connect to the redis server(s). UnableToConnect on localhost:6379/Interactive, Initializing/NotStarted, last: NONE, origin: BeginConnectAsync, outstanding: 0, last-read: 2s ago, last-write: 2s ago, keep-alive: 60s, state: Connecting, mgr: 10 of 10 available, last-heartbeat: never, global: 28s ago, v: 2.1.58.34321 +StackExchange.Redis.RedisConnectionException: It was not possible to connect to the redis server(s). UnableToConnect on localhost:6379/Interactive, Initializing/NotStarted, last: NONE, origin: BeginConnectAsync, outstanding: 0, last-read: 2s ago, last-write: 2s ago, keep-alive: 60s, state: Connecting, mgr: 10 of 10 available, last-heartbeat: never, global: 28s ago, v: 2.1.58.34321 + at StackExchange.Redis.ConnectionMultiplexer.ConnectImplAsync(ConfigurationOptions configuration, TextWriter log) in /_/src/StackExchange.Redis/ConnectionMultiplexer.cs:line 861 + at Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache.ConnectAsync(CancellationToken token) + at Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache.GetAndRefreshAsync(String key, Boolean getData, CancellationToken token) + at Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache.GetAsync(String key, CancellationToken token) + at Volo.Abp.Caching.DistributedCache`2.GetAsync(TCacheKey key, Nullable`1 hideErrors, Boolean considerUow, CancellationToken token) +2021-08-22 01:14:07.569 +08:00 [DBG] Server szqh003802a:27900:a3b88d92 heartbeat successfully sent +2021-08-22 01:14:11.380 +08:00 [WRN] It was not possible to connect to the redis server(s). UnableToConnect on localhost:6379/Interactive, Initializing/NotStarted, last: NONE, origin: BeginConnectAsync, outstanding: 0, last-read: 2s ago, last-write: 2s ago, keep-alive: 60s, state: Connecting, mgr: 10 of 10 available, last-heartbeat: never, global: 32s ago, v: 2.1.58.34321 +StackExchange.Redis.RedisConnectionException: It was not possible to connect to the redis server(s). UnableToConnect on localhost:6379/Interactive, Initializing/NotStarted, last: NONE, origin: BeginConnectAsync, outstanding: 0, last-read: 2s ago, last-write: 2s ago, keep-alive: 60s, state: Connecting, mgr: 10 of 10 available, last-heartbeat: never, global: 32s ago, v: 2.1.58.34321 + at StackExchange.Redis.ConnectionMultiplexer.ConnectImplAsync(ConfigurationOptions configuration, TextWriter log) in /_/src/StackExchange.Redis/ConnectionMultiplexer.cs:line 861 + at Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache.ConnectAsync(CancellationToken token) + at Volo.Abp.Caching.StackExchangeRedis.AbpRedisCache.SetManyAsync(IEnumerable`1 items, DistributedCacheEntryOptions options, CancellationToken token) + at Volo.Abp.Caching.DistributedCache`2.<>c__DisplayClass54_0.<g__SetRealCache|0>d.MoveNext() +2021-08-22 01:14:11.524 +08:00 [INF] CORS policy execution successful. +2021-08-22 01:14:11.524 +08:00 [INF] CORS policy execution successful. +2021-08-22 01:14:11.591 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 01:14:11.640 +08:00 [INF] CORS policy execution successful. +2021-08-22 01:14:11.658 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 18914.9644ms +2021-08-22 01:14:11.658 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 18790.7052ms +2021-08-22 01:14:11.701 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-22 01:14:11.706 +08:00 [INF] CORS policy execution successful. +2021-08-22 01:14:11.971 +08:00 [INF] Successfully validated the token. +2021-08-22 01:14:11.972 +08:00 [INF] Successfully validated the token. +2021-08-22 01:14:12.063 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-08-22 01:14:12.063 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 01:14:12.134 +08:00 [INF] Route matched with {action = "Index", controller = "Home", area = "", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult Index() on controller CompanyName.ProjectName.Controllers.HomeController (CompanyName.ProjectName.HttpApi.Host). +2021-08-22 01:14:12.135 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 01:14:12.254 +08:00 [INF] Executing RedirectResult, redirecting to /swagger. +2021-08-22 01:14:12.278 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host) in 131.4966ms +2021-08-22 01:14:12.278 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-08-22 01:14:12.290 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/ - - - 302 0 - 33652.9803ms +2021-08-22 01:14:12.300 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/index.html - - +2021-08-22 01:14:12.380 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/index.html - - - 200 - text/html;charset=utf-8 80.8280ms +2021-08-22 01:14:12.584 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 01:14:12.584 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 01:14:12.591 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 999.8056ms +2021-08-22 01:14:12.649 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - +2021-08-22 01:14:13.097 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 447.8630ms +2021-08-22 01:14:13.433 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 01:14:13.455 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 1319.6215ms +2021-08-22 01:14:13.455 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 01:14:13.471 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 01:14:13.533 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 01:14:13.533 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 01:14:13.533 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 1832.7314ms +2021-08-22 01:14:24.161 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext -> λ:Microsoft.EntityFrameworkCore.DbContextOptions`1[[Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext, Volo.Abp.BackgroundJobs.EntityFrameworkCore, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]. +Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext -> λ:Microsoft.EntityFrameworkCore.DbContextOptions`1[[Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext, Volo.Abp.BackgroundJobs.EntityFrameworkCore, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]. + ---> MySqlConnector.MySqlException (0x80004005): Couldn't connect to server + ---> System.IO.EndOfStreamException: Expected to read 4 header bytes but only received 0. + at MySqlConnector.Protocol.Serialization.ProtocolUtility.DoReadPayloadAsync(BufferedByteReader bufferedByteReader, IByteHandler byteHandler, Func`1 getNextSequenceNumber, ArraySegmentHolder`1 previousPayloads, ProtocolErrorBehavior protocolErrorBehavior, IOBehavior ioBehavior) in /_/src/MySqlConnector/Protocol/Serialization/ProtocolUtility.cs:line 469 + at MySqlConnector.Protocol.Serialization.ProtocolUtility.ReadPayloadAsync(BufferedByteReader bufferedByteReader, IByteHandler byteHandler, Func`1 getNextSequenceNumber, ArraySegmentHolder`1 cache, ProtocolErrorBehavior protocolErrorBehavior, IOBehavior ioBehavior) in /_/src/MySqlConnector/Protocol/Serialization/ProtocolUtility.cs:line 461 + at MySqlConnector.Protocol.Serialization.StandardPayloadHandler.ReadPayloadAsync(ArraySegmentHolder`1 cache, ProtocolErrorBehavior protocolErrorBehavior, IOBehavior ioBehavior) in /_/src/MySqlConnector/Protocol/Serialization/StandardPayloadHandler.cs:line 42 + at MySqlConnector.Core.ServerSession.ReceiveReplyAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/ServerSession.cs:line 776 +--- End of stack trace from previous location --- + at MySqlConnector.Core.ServerSession.ReceiveReplyAsyncAwaited(ValueTask`1 task) in /_/src/MySqlConnector/Core/ServerSession.cs:line 804 + at MySqlConnector.Core.ServerSession.ConnectAsync(ConnectionSettings cs, Int32 startTickCount, ILoadBalancer loadBalancer, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/ServerSession.cs:line 389 + at MySqlConnector.Core.ServerSession.ConnectAsync(ConnectionSettings cs, Int32 startTickCount, ILoadBalancer loadBalancer, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/ServerSession.cs:line 493 + at MySqlConnector.Core.ConnectionPool.GetSessionAsync(MySqlConnection connection, Int32 startTickCount, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/ConnectionPool.cs:line 110 + at MySqlConnector.Core.ConnectionPool.GetSessionAsync(MySqlConnection connection, Int32 startTickCount, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/ConnectionPool.cs:line 140 + at MySqlConnector.MySqlConnection.CreateSessionAsync(ConnectionPool pool, Int32 startTickCount, Nullable`1 ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlConnection.cs:line 846 + at MySqlConnector.MySqlConnection.OpenAsync(Nullable`1 ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlConnection.cs:line 410 + at MySqlConnector.MySqlConnection.Open() in /_/src/MySqlConnector/MySqlConnection.cs:line 376 + at Microsoft.EntityFrameworkCore.ServerVersion.AutoDetect(String connectionString) + at Volo.Abp.EntityFrameworkCore.AbpDbContextConfigurationContextMySQLExtensions.UseMySQL(AbpDbContextConfigurationContext context, Action`1 mySQLOptionsAction) + at Volo.Abp.EntityFrameworkCore.AbpDbContextOptionsMySQLExtensions.<>c__DisplayClass0_0.b__0(AbpDbContextConfigurationContext context) + at Volo.Abp.EntityFrameworkCore.DependencyInjection.DbContextOptionsFactory.Configure[TDbContext](AbpDbContextOptions options, AbpDbContextConfigurationContext`1 context) + at Volo.Abp.EntityFrameworkCore.DependencyInjection.DbContextOptionsFactory.Create[TDbContext](IServiceProvider serviceProvider) + at Autofac.Extensions.DependencyInjection.AutofacRegistration.<>c__DisplayClass3_0.b__0(IComponentContext context, IEnumerable`1 parameters) + at Autofac.Core.Activators.Delegate.DelegateActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters) + at Autofac.Core.Activators.Delegate.DelegateActivator.b__2_0(ResolveRequestContext ctxt, Action`1 next) + at Autofac.Core.Resolving.Middleware.DelegateMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + --- End of inner exception stack trace --- + at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Pipeline.ResolvePipeline.Invoke(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.RegistrationPipelineInvokeMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.ScopeSelectionMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next) + at Autofac.Core.Resolving.Pipeline.ResolvePipelineBuilder.<>c__DisplayClass14_0.b__1(ResolveRequestContext ctxt) + at Autofac.Core.Pipeline.ResolvePipeline.Invoke(ResolveRequestContext ctxt) + at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request) + at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request) + at Autofac.Core.Resolving.ResolveOperation.Execute(ResolveRequest request) + at Autofac.Core.Lifetime.LifetimeScope.ResolveComponent(ResolveRequest request) + at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance) + at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters) + at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType, IEnumerable`1 parameters) + at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType) + at Autofac.Extensions.DependencyInjection.AutofacServiceProvider.GetRequiredService(Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextAsync(IUnitOfWork unitOfWork) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextAsync(IUnitOfWork unitOfWork, String connectionStringName, String connectionString) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.GetDbContextAsync() + at Volo.Abp.Domain.Repositories.EntityFrameworkCore.EfCoreRepository`2.GetDbSetAsync() + at Volo.Abp.BackgroundJobs.EntityFrameworkCore.EfCoreBackgroundJobRepository.GetWaitingListQueryAsync(Int32 maxResultCount) + at Volo.Abp.BackgroundJobs.EntityFrameworkCore.EfCoreBackgroundJobRepository.GetWaitingListAsync(Int32 maxResultCount, CancellationToken cancellationToken) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Volo.Abp.BackgroundJobs.BackgroundJobStore.GetWaitingJobsAsync(Int32 maxResultCount) + at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext) + at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync() +2021-08-22 01:14:24.162 +08:00 [ERR] ---------- Exception Data ---------- +ActivatorChain = Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext -> λ:Microsoft.EntityFrameworkCore.DbContextOptions`1[[Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext, Volo.Abp.BackgroundJobs.EntityFrameworkCore, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]] + +2021-08-22 01:14:53.900 +08:00 [INF] Starting CompanyName.ProjectName.HttpApi.Host. +2021-08-22 01:14:57.971 +08:00 [INF] User profile is available. Using 'C:\Users\wangjun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. +2021-08-22 01:14:58.093 +08:00 [INF] Loaded ABP modules: +2021-08-22 01:14:58.093 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiHostModule +2021-08-22 01:14:58.093 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiModule +2021-08-22 01:14:58.093 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationContractsModule +2021-08-22 01:14:58.093 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainSharedModule +2021-08-22 01:14:58.093 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule +2021-08-22 01:14:58.093 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainSharedModule +2021-08-22 01:14:58.093 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule +2021-08-22 01:14:58.093 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2021-08-22 01:14:58.093 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule +2021-08-22 01:14:58.093 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2021-08-22 01:14:58.093 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2021-08-22 01:14:58.093 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2021-08-22 01:14:58.093 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule +2021-08-22 01:14:58.093 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2021-08-22 01:14:58.093 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule +2021-08-22 01:14:58.093 +08:00 [INF] - Volo.Abp.Data.AbpDataModule +2021-08-22 01:14:58.093 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule +2021-08-22 01:14:58.093 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2021-08-22 01:14:58.093 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule +2021-08-22 01:14:58.093 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2021-08-22 01:14:58.093 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2021-08-22 01:14:58.093 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule +2021-08-22 01:14:58.093 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule +2021-08-22 01:14:58.093 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainSharedModule +2021-08-22 01:14:58.093 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2021-08-22 01:14:58.093 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2021-08-22 01:14:58.093 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule +2021-08-22 01:14:58.093 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule +2021-08-22 01:14:58.093 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2021-08-22 01:14:58.093 +08:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2021-08-22 01:14:58.093 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2021-08-22 01:14:58.093 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2021-08-22 01:14:58.093 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2021-08-22 01:14:58.093 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2021-08-22 01:14:58.093 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2021-08-22 01:14:58.093 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule +2021-08-22 01:14:58.093 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2021-08-22 01:14:58.093 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2021-08-22 01:14:58.093 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2021-08-22 01:14:58.093 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2021-08-22 01:14:58.093 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule +2021-08-22 01:14:58.093 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule +2021-08-22 01:14:58.093 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule +2021-08-22 01:14:58.093 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2021-08-22 01:14:58.093 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule +2021-08-22 01:14:58.094 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationContractsModule +2021-08-22 01:14:58.094 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainSharedModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.UI.AbpUiModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule +2021-08-22 01:14:58.094 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementHttpApiModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.Caching.StackExchangeRedis.AbpCachingStackExchangeRedisModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule +2021-08-22 01:14:58.094 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationModule +2021-08-22 01:14:58.094 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.PermissionManagement.IdentityServer.AbpPermissionManagementDomainIdentityServerModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule +2021-08-22 01:14:58.094 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule +2021-08-22 01:14:58.094 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainModule +2021-08-22 01:14:58.094 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainSharedModule +2021-08-22 01:14:58.094 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationModule +2021-08-22 01:14:58.094 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreDbMigrationsModule +2021-08-22 01:14:58.094 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.IdentityServer.EntityFrameworkCore.AbpIdentityServerEntityFrameworkCoreModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.MySQL.AbpEntityFrameworkCoreMySQLModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.BackgroundJobs.EntityFrameworkCore.AbpBackgroundJobsEntityFrameworkCoreModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule +2021-08-22 01:14:58.094 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.FreeSqlMySql.QueryManagementFreeSqlMySqlModule +2021-08-22 01:14:58.094 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.EntityFrameworkCore.DataDictionaryManagementEntityFrameworkCoreModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.BackgroundJobs.Hangfire.AbpBackgroundJobsHangfireModule +2021-08-22 01:14:58.094 +08:00 [INF] - Volo.Abp.Hangfire.AbpHangfireModule +2021-08-22 01:14:58.178 +08:00 [DBG] Started background worker: Volo.Abp.BackgroundJobs.BackgroundJobWorker +2021-08-22 01:14:58.182 +08:00 [DBG] Started background worker: Volo.Abp.IdentityServer.Tokens.TokenCleanupBackgroundWorker +2021-08-22 01:14:58.327 +08:00 [INF] DB tables already exist. Exit install +2021-08-22 01:14:58.341 +08:00 [INF] Starting Hangfire Server using job storage: 'Server: localhost@CompanyNameProjectNameHangfireDB' +2021-08-22 01:14:58.342 +08:00 [INF] Using the following options for SQL Server job storage: +2021-08-22 01:14:58.342 +08:00 [INF] Queue poll interval: 00:00:15. +2021-08-22 01:14:58.342 +08:00 [INF] Using the following options for Hangfire Server: + Worker count: 20 + Listening queues: 'default' + Shutdown timeout: 00:00:15 + Schedule polling interval: 00:00:15 +2021-08-22 01:14:58.367 +08:00 [DBG] Execution loop BackgroundServerProcess:96efb528 has started in 5.4117 ms +2021-08-22 01:14:58.474 +08:00 [INF] Server szqh003802a:34456:5555e8ea successfully announced in 102.1627 ms +2021-08-22 01:14:58.478 +08:00 [INF] Server szqh003802a:34456:5555e8ea is starting the registered dispatchers: ServerWatchdog, ServerJobCancellationWatcher, ExpirationManager, CountersAggregator, Worker, DelayedJobScheduler, RecurringJobScheduler... +2021-08-22 01:14:58.478 +08:00 [DBG] Execution loop ServerHeartbeatProcess:ed5a25df has started in 3.306 ms +2021-08-22 01:14:58.483 +08:00 [DBG] Execution loop ServerWatchdog:4ab60ae7 has started in 4.2672 ms +2021-08-22 01:14:58.483 +08:00 [DBG] Execution loop ServerJobCancellationWatcher:d4868f54 has started in 2.7536 ms +2021-08-22 01:14:58.485 +08:00 [DBG] Execution loop ExpirationManager:2052e052 has started in 2.4436 ms +2021-08-22 01:14:58.487 +08:00 [DBG] Execution loop CountersAggregator:137e99c0 has started in 2.9043 ms +2021-08-22 01:14:58.489 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-22 01:14:58.489 +08:00 [DBG] Execution loop Worker:be52cd4f has started in 3.6375 ms +2021-08-22 01:14:58.489 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-08-22 01:14:58.490 +08:00 [DBG] Execution loop Worker:acdf514a has started in 4.4383 ms +2021-08-22 01:14:58.492 +08:00 [DBG] Execution loop Worker:97139812 has started in 6.7012 ms +2021-08-22 01:14:58.493 +08:00 [DBG] Execution loop Worker:42d9c281 has started in 7.8893 ms +2021-08-22 01:14:58.495 +08:00 [DBG] Execution loop Worker:ec27cb06 has started in 9.7543 ms +2021-08-22 01:14:58.498 +08:00 [DBG] Execution loop Worker:d6194658 has started in 12.1838 ms +2021-08-22 01:14:58.500 +08:00 [DBG] Execution loop Worker:0471042d has started in 14.2508 ms +2021-08-22 01:14:58.501 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-08-22 01:14:58.502 +08:00 [DBG] Execution loop Worker:5e6b3c8c has started in 16.6123 ms +2021-08-22 01:14:58.504 +08:00 [DBG] Execution loop Worker:fe897e93 has started in 18.9722 ms +2021-08-22 01:14:58.507 +08:00 [DBG] Execution loop Worker:13885a54 has started in 21.8735 ms +2021-08-22 01:14:58.510 +08:00 [DBG] Execution loop Worker:2aad0994 has started in 24.8405 ms +2021-08-22 01:14:58.517 +08:00 [DBG] Execution loop Worker:24eadc1e has started in 31.585 ms +2021-08-22 01:14:58.522 +08:00 [DBG] Execution loop Worker:3ca4b496 has started in 36.7816 ms +2021-08-22 01:14:58.527 +08:00 [DBG] Execution loop Worker:2f47cad4 has started in 41.753 ms +2021-08-22 01:14:58.533 +08:00 [DBG] Execution loop Worker:ccd75d0c has started in 47.6832 ms +2021-08-22 01:14:58.536 +08:00 [DBG] Execution loop Worker:310387fb has started in 50.9962 ms +2021-08-22 01:14:58.540 +08:00 [DBG] Execution loop Worker:27200d85 has started in 55.0243 ms +2021-08-22 01:14:58.546 +08:00 [DBG] Execution loop Worker:9b8b08e8 has started in 60.3842 ms +2021-08-22 01:14:58.550 +08:00 [DBG] Execution loop Worker:99badf33 has started in 64.7452 ms +2021-08-22 01:14:58.561 +08:00 [DBG] Execution loop Worker:b3822135 has started in 75.1715 ms +2021-08-22 01:14:58.564 +08:00 [DBG] removed records count=0 +2021-08-22 01:14:58.564 +08:00 [DBG] Execution loop DelayedJobScheduler:289cb22b has started in 13.9063 ms +2021-08-22 01:14:58.564 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-08-22 01:14:58.565 +08:00 [INF] Server szqh003802a:34456:5555e8ea all the dispatchers started +2021-08-22 01:14:58.568 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-08-22 01:14:58.569 +08:00 [DBG] Execution loop RecurringJobScheduler:15539827 has started in 4.6906 ms +2021-08-22 01:14:58.615 +08:00 [DBG] removed records count=0 +2021-08-22 01:14:58.615 +08:00 [DBG] Removing outdated records from table 'List'... +2021-08-22 01:14:58.617 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-08-22 01:14:58.638 +08:00 [DBG] removed records count=0 +2021-08-22 01:14:58.638 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-08-22 01:14:58.639 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-08-22 01:14:58.651 +08:00 [DBG] removed records count=0 +2021-08-22 01:14:58.651 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-08-22 01:14:58.655 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-08-22 01:14:58.668 +08:00 [DBG] removed records count=0 +2021-08-22 01:14:59.598 +08:00 [INF] Initialized all ABP modules. +2021-08-22 01:14:59.673 +08:00 [INF] Now listening on: http://localhost:44315 +2021-08-22 01:14:59.674 +08:00 [INF] Application started. Press Ctrl+C to shut down. +2021-08-22 01:14:59.674 +08:00 [INF] Hosting environment: Development +2021-08-22 01:14:59.674 +08:00 [INF] Content root path: D:\abp\aspnet-core\services\src\CompanyName.ProjectName.HttpApi.Host +2021-08-22 01:14:59.956 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/ - - +2021-08-22 01:15:01.055 +08:00 [DBG] 91 recurring job(s) processed by scheduler. +2021-08-22 01:15:02.520 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-08-22 01:15:02.606 +08:00 [INF] Route matched with {action = "Index", controller = "Home", area = "", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult Index() on controller CompanyName.ProjectName.Controllers.HomeController (CompanyName.ProjectName.HttpApi.Host). +2021-08-22 01:15:02.648 +08:00 [INF] Executing RedirectResult, redirecting to /swagger. +2021-08-22 01:15:02.655 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host) in 45.0717ms +2021-08-22 01:15:02.656 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-08-22 01:15:02.678 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/ - - - 302 0 - 2724.4578ms +2021-08-22 01:15:02.693 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/index.html - - +2021-08-22 01:15:02.753 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/index.html - - - 200 - text/html;charset=utf-8 59.5117ms +2021-08-22 01:15:02.964 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - +2021-08-22 01:15:03.470 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 506.1793ms +2021-08-22 01:15:10.796 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 01:15:10.806 +08:00 [INF] CORS policy execution successful. +2021-08-22 01:15:10.817 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 18.6518ms +2021-08-22 01:15:10.819 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 01:15:10.820 +08:00 [INF] CORS policy execution successful. +2021-08-22 01:15:10.907 +08:00 [INF] Successfully validated the token. +2021-08-22 01:15:10.942 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-22 01:15:10.944 +08:00 [INF] CORS policy execution successful. +2021-08-22 01:15:10.944 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 1.9635ms +2021-08-22 01:15:10.948 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-22 01:15:10.950 +08:00 [INF] CORS policy execution successful. +2021-08-22 01:15:10.954 +08:00 [INF] Successfully validated the token. +2021-08-22 01:15:10.957 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 01:15:10.979 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 01:15:11.573 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 01:15:11.573 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 01:15:11.578 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 759.3815ms +2021-08-22 01:15:12.304 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 01:15:12.325 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 1345.7827ms +2021-08-22 01:15:12.326 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 01:15:12.340 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 01:15:12.397 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 01:15:12.397 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 01:15:12.398 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 1449.3861ms +2021-08-22 01:15:26.513 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-22 01:15:26.513 +08:00 [INF] CORS policy execution successful. +2021-08-22 01:15:26.514 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 1.0030ms +2021-08-22 01:15:26.516 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-22 01:15:26.517 +08:00 [INF] CORS policy execution successful. +2021-08-22 01:15:26.519 +08:00 [INF] Successfully validated the token. +2021-08-22 01:15:26.521 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 01:15:26.523 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-22 01:15:26.837 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 01:15:26.850 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 326.9993ms +2021-08-22 01:15:26.850 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 01:15:26.873 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 01:15:26.899 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 01:15:26.900 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 01:15:26.900 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 384.1166ms +2021-08-22 01:15:28.519 +08:00 [DBG] Server szqh003802a:34456:5555e8ea heartbeat successfully sent +2021-08-22 01:15:58.539 +08:00 [DBG] Server szqh003802a:34456:5555e8ea heartbeat successfully sent +2021-08-22 01:16:28.558 +08:00 [DBG] Server szqh003802a:34456:5555e8ea heartbeat successfully sent +2021-08-22 01:16:58.567 +08:00 [DBG] Server szqh003802a:34456:5555e8ea heartbeat successfully sent +2021-08-22 01:17:01.315 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-22 01:17:28.572 +08:00 [DBG] Server szqh003802a:34456:5555e8ea heartbeat successfully sent +2021-08-22 01:17:58.585 +08:00 [DBG] Server szqh003802a:34456:5555e8ea heartbeat successfully sent +2021-08-22 01:18:28.601 +08:00 [DBG] Server szqh003802a:34456:5555e8ea heartbeat successfully sent +2021-08-22 01:18:58.617 +08:00 [DBG] Server szqh003802a:34456:5555e8ea heartbeat successfully sent +2021-08-22 01:19:01.603 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-22 01:19:28.631 +08:00 [DBG] Server szqh003802a:34456:5555e8ea heartbeat successfully sent +2021-08-22 01:19:58.496 +08:00 [INF] 1 servers were removed due to timeout +2021-08-22 01:19:58.521 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-22 01:19:58.651 +08:00 [DBG] Server szqh003802a:34456:5555e8ea heartbeat successfully sent +2021-08-22 01:20:28.678 +08:00 [DBG] Server szqh003802a:34456:5555e8ea heartbeat successfully sent +2021-08-22 01:20:58.703 +08:00 [DBG] Server szqh003802a:34456:5555e8ea heartbeat successfully sent +2021-08-22 01:21:28.724 +08:00 [DBG] Server szqh003802a:34456:5555e8ea heartbeat successfully sent +2021-08-22 01:21:35.920 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-22 01:21:54.925 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-22 01:21:58.740 +08:00 [DBG] Server szqh003802a:34456:5555e8ea heartbeat successfully sent +2021-08-22 01:22:01.056 +08:00 [DBG] 322 recurring job(s) processed by scheduler. +2021-08-22 01:22:28.761 +08:00 [DBG] Server szqh003802a:34456:5555e8ea heartbeat successfully sent +2021-08-22 01:22:58.778 +08:00 [DBG] Server szqh003802a:34456:5555e8ea heartbeat successfully sent +2021-08-22 01:23:28.794 +08:00 [DBG] Server szqh003802a:34456:5555e8ea heartbeat successfully sent +2021-08-22 01:23:36.037 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-22 01:23:57.128 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-22 01:23:58.814 +08:00 [DBG] Server szqh003802a:34456:5555e8ea heartbeat successfully sent +2021-08-22 01:24:01.082 +08:00 [DBG] 165 recurring job(s) processed by scheduler. +2021-08-22 01:24:28.842 +08:00 [DBG] Server szqh003802a:34456:5555e8ea heartbeat successfully sent +2021-08-22 01:24:54.459 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-22 01:24:54.459 +08:00 [INF] CORS policy execution successful. +2021-08-22 01:24:54.459 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4568ms +2021-08-22 01:24:54.461 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-22 01:24:54.461 +08:00 [INF] CORS policy execution successful. +2021-08-22 01:24:54.463 +08:00 [INF] Successfully validated the token. +2021-08-22 01:24:54.465 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 01:24:54.465 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-22 01:24:54.519 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 01:24:54.520 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 55.0488ms +2021-08-22 01:24:54.520 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 01:24:54.527 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 01:24:54.552 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 01:24:54.552 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 01:24:54.552 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 91.3218ms +2021-08-22 01:24:55.384 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-22 01:24:55.384 +08:00 [INF] CORS policy execution successful. +2021-08-22 01:24:55.387 +08:00 [INF] Successfully validated the token. +2021-08-22 01:24:55.388 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 01:24:55.388 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-22 01:24:55.436 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 01:24:55.438 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 50.001ms +2021-08-22 01:24:55.438 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 01:24:55.445 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 01:24:55.471 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 01:24:55.472 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 01:24:55.472 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 88.2651ms +2021-08-22 01:24:58.583 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-22 01:24:58.931 +08:00 [DBG] Server szqh003802a:34456:5555e8ea heartbeat successfully sent +2021-08-22 01:25:28.975 +08:00 [DBG] Server szqh003802a:34456:5555e8ea heartbeat successfully sent +2021-08-22 01:25:51.605 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-22 01:25:58.986 +08:00 [DBG] Server szqh003802a:34456:5555e8ea heartbeat successfully sent +2021-08-22 01:26:01.072 +08:00 [DBG] 462 recurring job(s) processed by scheduler. +2021-08-22 01:26:07.331 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-22 01:26:07.332 +08:00 [INF] CORS policy execution successful. +2021-08-22 01:26:07.332 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.6562ms +2021-08-22 01:26:07.334 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-22 01:26:07.335 +08:00 [INF] CORS policy execution successful. +2021-08-22 01:26:07.337 +08:00 [INF] Successfully validated the token. +2021-08-22 01:26:07.516 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-22 01:26:07.519 +08:00 [DBG] Not found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-22 01:26:07.522 +08:00 [DBG] Getting all granted permissions from the repository for this provider name,key: U,39fe52c6-27a0-d54c-0b47-4133f044c8fa +2021-08-22 01:26:07.563 +08:00 [DBG] Setting the cache items. Count: 24 +2021-08-22 01:26:07.571 +08:00 [DBG] Finished setting the cache items. Count: 24 +2021-08-22 01:26:07.577 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-22 01:26:07.578 +08:00 [DBG] Not found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-22 01:26:07.579 +08:00 [DBG] Getting all granted permissions from the repository for this provider name,key: R,admin +2021-08-22 01:26:07.604 +08:00 [DBG] Setting the cache items. Count: 24 +2021-08-22 01:26:07.611 +08:00 [DBG] Finished setting the cache items. Count: 24 +2021-08-22 01:26:07.615 +08:00 [INF] Authorization was successful. +2021-08-22 01:26:07.618 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 01:26:07.620 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-22 01:26:08.441 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 01:26:08.456 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 835.5424ms +2021-08-22 01:26:08.456 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 01:26:08.470 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 01:26:08.497 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 01:26:08.497 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 01:26:08.499 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 1165.0385ms +2021-08-22 01:26:10.859 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Roles/page - - +2021-08-22 01:26:10.859 +08:00 [INF] CORS policy execution successful. +2021-08-22 01:26:10.860 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Roles/page - - - 204 - - 0.5773ms +2021-08-22 01:26:10.861 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Roles/page application/json 29 +2021-08-22 01:26:10.862 +08:00 [INF] CORS policy execution successful. +2021-08-22 01:26:10.864 +08:00 [INF] Successfully validated the token. +2021-08-22 01:26:10.865 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles +2021-08-22 01:26:10.876 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles +2021-08-22 01:26:10.876 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles +2021-08-22 01:26:10.878 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles +2021-08-22 01:26:10.879 +08:00 [INF] Authorization was successful. +2021-08-22 01:26:10.880 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 01:26:10.883 +08:00 [INF] Route matched with {action = "List", controller = "Role", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityRoleDto]] ListAsync(CompanyName.ProjectName.Roles.Dtos.PagingRoleListInput) on controller CompanyName.ProjectName.Controllers.Systems.RoleController (CompanyName.ProjectName.HttpApi). +2021-08-22 01:26:11.039 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityRoleDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 01:26:11.042 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi) in 159.6092ms +2021-08-22 01:26:11.042 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 01:26:11.048 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 01:26:11.075 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 01:26:11.075 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 01:26:11.076 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Roles/page application/json 29 - 200 - application/json;+charset=utf-8 214.7899ms +2021-08-22 01:26:14.563 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Permissions/tree - - +2021-08-22 01:26:14.564 +08:00 [INF] CORS policy execution successful. +2021-08-22 01:26:14.564 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Permissions/tree - - - 204 - - 0.6392ms +2021-08-22 01:26:14.566 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Permissions/tree application/json 44 +2021-08-22 01:26:14.566 +08:00 [INF] CORS policy execution successful. +2021-08-22 01:26:14.568 +08:00 [INF] Successfully validated the token. +2021-08-22 01:26:14.569 +08:00 [INF] Authorization was successful. +2021-08-22 01:26:14.570 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.PermissionController.GetPermissionAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 01:26:14.572 +08:00 [INF] Route matched with {action = "GetPermission", controller = "Permission", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[CompanyName.ProjectName.Roles.Dtos.PermissionOutput] GetPermissionAsync(CompanyName.ProjectName.Roles.Dtos.GetPermissionInput) on controller CompanyName.ProjectName.Controllers.Systems.PermissionController (CompanyName.ProjectName.HttpApi). +2021-08-22 01:26:14.600 +08:00 [INF] Authorization was successful. +2021-08-22 01:26:14.610 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.ManagePermissions +2021-08-22 01:26:14.613 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.ManagePermissions +2021-08-22 01:26:14.613 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles.ManagePermissions +2021-08-22 01:26:14.615 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles.ManagePermissions +2021-08-22 01:26:14.615 +08:00 [INF] Authorization was successful. +2021-08-22 01:26:14.845 +08:00 [INF] Executing ObjectResult, writing value of type 'CompanyName.ProjectName.Roles.Dtos.PermissionOutput'. +2021-08-22 01:26:14.847 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.PermissionController.GetPermissionAsync (CompanyName.ProjectName.HttpApi) in 274.2713ms +2021-08-22 01:26:14.847 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.PermissionController.GetPermissionAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 01:26:14.850 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 01:26:14.882 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 01:26:14.882 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 01:26:14.882 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Permissions/tree application/json 44 - 200 - application/json;+charset=utf-8 316.4470ms +2021-08-22 01:26:29.058 +08:00 [DBG] Server szqh003802a:34456:5555e8ea heartbeat successfully sent +2021-08-22 08:49:57.939 +08:00 [INF] Starting CompanyName.ProjectName.HttpApi.Host. +2021-08-22 08:50:02.146 +08:00 [INF] User profile is available. Using 'C:\Users\wangjun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. +2021-08-22 08:50:02.204 +08:00 [INF] Loaded ABP modules: +2021-08-22 08:50:02.204 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiHostModule +2021-08-22 08:50:02.204 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiModule +2021-08-22 08:50:02.204 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationContractsModule +2021-08-22 08:50:02.204 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainSharedModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainSharedModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Data.AbpDataModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainSharedModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule +2021-08-22 08:50:02.204 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationContractsModule +2021-08-22 08:50:02.204 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainSharedModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.UI.AbpUiModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule +2021-08-22 08:50:02.204 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementHttpApiModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Caching.StackExchangeRedis.AbpCachingStackExchangeRedisModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule +2021-08-22 08:50:02.204 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationModule +2021-08-22 08:50:02.204 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.PermissionManagement.IdentityServer.AbpPermissionManagementDomainIdentityServerModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule +2021-08-22 08:50:02.204 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule +2021-08-22 08:50:02.204 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainModule +2021-08-22 08:50:02.204 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainSharedModule +2021-08-22 08:50:02.204 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationModule +2021-08-22 08:50:02.204 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreDbMigrationsModule +2021-08-22 08:50:02.204 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.IdentityServer.EntityFrameworkCore.AbpIdentityServerEntityFrameworkCoreModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.MySQL.AbpEntityFrameworkCoreMySQLModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.BackgroundJobs.EntityFrameworkCore.AbpBackgroundJobsEntityFrameworkCoreModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule +2021-08-22 08:50:02.204 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.FreeSqlMySql.QueryManagementFreeSqlMySqlModule +2021-08-22 08:50:02.204 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.EntityFrameworkCore.DataDictionaryManagementEntityFrameworkCoreModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.BackgroundJobs.Hangfire.AbpBackgroundJobsHangfireModule +2021-08-22 08:50:02.204 +08:00 [INF] - Volo.Abp.Hangfire.AbpHangfireModule +2021-08-22 08:50:02.266 +08:00 [DBG] Started background worker: Volo.Abp.BackgroundJobs.BackgroundJobWorker +2021-08-22 08:50:02.268 +08:00 [DBG] Started background worker: Volo.Abp.IdentityServer.Tokens.TokenCleanupBackgroundWorker +2021-08-22 08:50:02.441 +08:00 [INF] DB tables already exist. Exit install +2021-08-22 08:50:02.458 +08:00 [INF] Starting Hangfire Server using job storage: 'Server: localhost@CompanyNameProjectNameHangfireDB' +2021-08-22 08:50:02.459 +08:00 [INF] Using the following options for SQL Server job storage: +2021-08-22 08:50:02.459 +08:00 [INF] Queue poll interval: 00:00:15. +2021-08-22 08:50:02.459 +08:00 [INF] Using the following options for Hangfire Server: + Worker count: 20 + Listening queues: 'default' + Shutdown timeout: 00:00:15 + Schedule polling interval: 00:00:15 +2021-08-22 08:50:02.467 +08:00 [DBG] Execution loop BackgroundServerProcess:1cfde07e has started in 3.2953 ms +2021-08-22 08:50:02.590 +08:00 [INF] Server szqh003802a:30852:504dc4d6 successfully announced in 119.7305 ms +2021-08-22 08:50:02.593 +08:00 [DBG] Execution loop ServerHeartbeatProcess:4446076f has started in 2.0872 ms +2021-08-22 08:50:02.594 +08:00 [INF] Server szqh003802a:30852:504dc4d6 is starting the registered dispatchers: ServerWatchdog, ServerJobCancellationWatcher, ExpirationManager, CountersAggregator, Worker, DelayedJobScheduler, RecurringJobScheduler... +2021-08-22 08:50:02.594 +08:00 [DBG] Execution loop ServerWatchdog:fe27a236 has started in 0.2705 ms +2021-08-22 08:50:02.594 +08:00 [DBG] Execution loop ServerJobCancellationWatcher:39c27d39 has started in 0.1539 ms +2021-08-22 08:50:02.595 +08:00 [DBG] Execution loop ExpirationManager:90d5ea47 has started in 0.4188 ms +2021-08-22 08:50:02.595 +08:00 [DBG] Execution loop CountersAggregator:ee7c01a1 has started in 0.1576 ms +2021-08-22 08:50:02.595 +08:00 [DBG] Execution loop Worker:a4638b47 has started in 0.2588 ms +2021-08-22 08:50:02.596 +08:00 [DBG] Execution loop Worker:2dc88727 has started in 0.4093 ms +2021-08-22 08:50:02.596 +08:00 [DBG] Execution loop Worker:cad2dbd2 has started in 0.6694 ms +2021-08-22 08:50:02.596 +08:00 [DBG] Execution loop Worker:62025579 has started in 0.8314 ms +2021-08-22 08:50:02.596 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-22 08:50:02.596 +08:00 [DBG] Execution loop Worker:9b6e9f87 has started in 0.9593 ms +2021-08-22 08:50:02.596 +08:00 [DBG] Execution loop Worker:c149d5a2 has started in 1.099 ms +2021-08-22 08:50:02.596 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-08-22 08:50:02.597 +08:00 [DBG] Execution loop Worker:b234bd7a has started in 1.3235 ms +2021-08-22 08:50:02.597 +08:00 [DBG] Execution loop Worker:d87f653b has started in 1.6373 ms +2021-08-22 08:50:02.597 +08:00 [DBG] Execution loop Worker:15943fce has started in 1.848 ms +2021-08-22 08:50:02.597 +08:00 [DBG] Execution loop Worker:c6bad5d7 has started in 2.0972 ms +2021-08-22 08:50:02.598 +08:00 [DBG] Execution loop Worker:226e38fa has started in 2.327 ms +2021-08-22 08:50:02.598 +08:00 [DBG] Execution loop Worker:af5817cb has started in 2.6662 ms +2021-08-22 08:50:02.598 +08:00 [DBG] Execution loop Worker:9e147265 has started in 2.8097 ms +2021-08-22 08:50:02.598 +08:00 [DBG] Execution loop Worker:bcb00952 has started in 2.9603 ms +2021-08-22 08:50:02.598 +08:00 [DBG] Execution loop Worker:6a55f772 has started in 3.1411 ms +2021-08-22 08:50:02.599 +08:00 [DBG] Execution loop Worker:6736c67b has started in 3.3615 ms +2021-08-22 08:50:02.599 +08:00 [DBG] Execution loop Worker:3d9390cf has started in 3.7319 ms +2021-08-22 08:50:02.599 +08:00 [DBG] Execution loop Worker:697c16b5 has started in 3.8773 ms +2021-08-22 08:50:02.599 +08:00 [DBG] Execution loop Worker:91ec2450 has started in 4.0584 ms +2021-08-22 08:50:02.599 +08:00 [DBG] Execution loop Worker:67e1856f has started in 4.2045 ms +2021-08-22 08:50:02.600 +08:00 [DBG] Execution loop DelayedJobScheduler:a6639106 has started in 0.1557 ms +2021-08-22 08:50:02.603 +08:00 [INF] Server szqh003802a:30852:504dc4d6 all the dispatchers started +2021-08-22 08:50:02.603 +08:00 [DBG] Execution loop RecurringJobScheduler:7053aeee has started in 3.3648 ms +2021-08-22 08:50:02.608 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-08-22 08:50:02.627 +08:00 [INF] 1 servers were removed due to timeout +2021-08-22 08:50:02.648 +08:00 [DBG] removed records count=0 +2021-08-22 08:50:02.648 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-08-22 08:50:02.655 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-08-22 08:50:02.674 +08:00 [DBG] removed records count=11 +2021-08-22 08:50:02.882 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-22 08:50:02.930 +08:00 [INF] Initialized all ABP modules. +2021-08-22 08:50:02.961 +08:00 [INF] Now listening on: http://localhost:44315 +2021-08-22 08:50:02.961 +08:00 [INF] Application started. Press Ctrl+C to shut down. +2021-08-22 08:50:02.961 +08:00 [INF] Hosting environment: Development +2021-08-22 08:50:02.961 +08:00 [INF] Content root path: D:\abp\aspnet-core\services\src\CompanyName.ProjectName.HttpApi.Host +2021-08-22 08:50:03.280 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/ - - +2021-08-22 08:50:03.685 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-08-22 08:50:03.694 +08:00 [DBG] removed records count=0 +2021-08-22 08:50:03.694 +08:00 [DBG] Removing outdated records from table 'List'... +2021-08-22 08:50:03.695 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-08-22 08:50:03.704 +08:00 [DBG] removed records count=0 +2021-08-22 08:50:03.704 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-08-22 08:50:03.705 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-08-22 08:50:03.713 +08:00 [DBG] removed records count=0 +2021-08-22 08:50:03.713 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-08-22 08:50:03.715 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-08-22 08:50:03.723 +08:00 [DBG] removed records count=0 +2021-08-22 08:50:05.242 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-08-22 08:50:05.287 +08:00 [INF] Route matched with {action = "Index", controller = "Home", area = "", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult Index() on controller CompanyName.ProjectName.Controllers.HomeController (CompanyName.ProjectName.HttpApi.Host). +2021-08-22 08:50:05.313 +08:00 [INF] Executing RedirectResult, redirecting to /swagger. +2021-08-22 08:50:05.317 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host) in 25.6032ms +2021-08-22 08:50:05.317 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-08-22 08:50:05.328 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/ - - - 302 0 - 2029.6368ms +2021-08-22 08:50:05.333 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/index.html - - +2021-08-22 08:50:05.389 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/index.html - - - 200 - text/html;charset=utf-8 55.1355ms +2021-08-22 08:50:05.810 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - +2021-08-22 08:50:06.051 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 238.6942ms +2021-08-22 08:50:18.962 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/api/app/account/login - - +2021-08-22 08:50:18.966 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:50:18.967 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/api/app/account/login - - - 204 - - 5.2751ms +2021-08-22 08:50:18.969 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/api/app/account/login application/json 37 +2021-08-22 08:50:18.971 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:50:18.973 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AccountController.LoginAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:50:18.983 +08:00 [INF] Route matched with {action = "Login", controller = "Account", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[CompanyName.ProjectName.Users.Dtos.LoginOutput] LoginAsync(CompanyName.ProjectName.Users.Dtos.LoginInput) on controller CompanyName.ProjectName.Controllers.Systems.AccountController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:50:20.195 +08:00 [WRN] The cookie '.AspNetCore.Identity.Application' has set 'SameSite=None' and must also set 'Secure'. +2021-08-22 08:50:20.196 +08:00 [INF] AuthenticationScheme: Identity.Application signed in. +2021-08-22 08:50:20.306 +08:00 [INF] Executing ObjectResult, writing value of type 'CompanyName.ProjectName.Users.Dtos.LoginOutput'. +2021-08-22 08:50:20.332 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AccountController.LoginAsync (CompanyName.ProjectName.HttpApi) in 1344.4175ms +2021-08-22 08:50:20.334 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AccountController.LoginAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:50:20.355 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:50:20.631 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:50:20.632 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:50:20.641 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/api/app/account/login application/json 37 - 200 - application/json;+charset=utf-8 1667.0434ms +2021-08-22 08:50:20.644 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/api/abp/application-configuration - - +2021-08-22 08:50:20.644 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:50:20.644 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/api/abp/application-configuration - - - 204 - - 0.3605ms +2021-08-22 08:50:20.645 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/api/abp/application-configuration - - +2021-08-22 08:50:20.647 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:50:20.681 +08:00 [INF] Successfully validated the token. +2021-08-22 08:50:20.787 +08:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController.GetAsync (Volo.Abp.AspNetCore.Mvc)' +2021-08-22 08:50:20.790 +08:00 [INF] Route matched with {area = "abp", action = "Get", controller = "AbpApplicationConfiguration", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationDto] GetAsync() on controller Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController (Volo.Abp.AspNetCore.Mvc). +2021-08-22 08:50:20.800 +08:00 [WRN] The cookie 'XSRF-TOKEN' has set 'SameSite=None' and must also set 'Secure'. +2021-08-22 08:50:20.804 +08:00 [DBG] Executing AbpApplicationConfigurationAppService.GetAsync()... +2021-08-22 08:50:20.877 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Create,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Update,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Delete,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.ManagePermissions,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Query,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Create,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Update,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Delete,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.ManagePermissions,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Users.Enable,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Query,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:FeatureManagement.ManageHostFeatures,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:SettingManagement.Emailing,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.Create,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.Update,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.Delete,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.ManageFeatures,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.ManageConnectionStrings +2021-08-22 08:50:20.902 +08:00 [DBG] Not found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Create,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Update,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Delete,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.ManagePermissions,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Query,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Create,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Update,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Delete,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.ManagePermissions,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Users.Enable,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Query,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:FeatureManagement.ManageHostFeatures,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:SettingManagement.Emailing,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.Create,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.Update,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.Delete,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.ManageFeatures,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.ManageConnectionStrings +2021-08-22 08:50:20.908 +08:00 [DBG] Getting not cache granted permissions from the repository for this provider name,key: U,39fe52c6-27a0-d54c-0b47-4133f044c8fa +2021-08-22 08:50:20.930 +08:00 [DBG] Setting the cache items. Count: 21 +2021-08-22 08:50:20.938 +08:00 [DBG] Finished setting the cache items. Count: 21 +2021-08-22 08:50:20.951 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles,pn:R,pk:admin,n:AbpIdentity.Roles.Create,pn:R,pk:admin,n:AbpIdentity.Roles.Update,pn:R,pk:admin,n:AbpIdentity.Roles.Delete,pn:R,pk:admin,n:AbpIdentity.Roles.ManagePermissions,pn:R,pk:admin,n:AbpIdentity.Roles.Query,pn:R,pk:admin,n:AbpIdentity.Users,pn:R,pk:admin,n:AbpIdentity.Users.Create,pn:R,pk:admin,n:AbpIdentity.Users.Update,pn:R,pk:admin,n:AbpIdentity.Users.Delete,pn:R,pk:admin,n:AbpIdentity.Users.ManagePermissions,pn:R,pk:admin,n:AbpIdentity.Users.Users.Enable,pn:R,pk:admin,n:AbpIdentity.Users.Query,pn:R,pk:admin,n:FeatureManagement.ManageHostFeatures,pn:R,pk:admin,n:SettingManagement.Emailing,pn:R,pk:admin,n:AbpTenantManagement.Tenants,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Create,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Update,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Delete,pn:R,pk:admin,n:AbpTenantManagement.Tenants.ManageFeatures,pn:R,pk:admin,n:AbpTenantManagement.Tenants.ManageConnectionStrings +2021-08-22 08:50:20.952 +08:00 [DBG] Not found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles,pn:R,pk:admin,n:AbpIdentity.Roles.Create,pn:R,pk:admin,n:AbpIdentity.Roles.Update,pn:R,pk:admin,n:AbpIdentity.Roles.Delete,pn:R,pk:admin,n:AbpIdentity.Roles.ManagePermissions,pn:R,pk:admin,n:AbpIdentity.Roles.Query,pn:R,pk:admin,n:AbpIdentity.Users,pn:R,pk:admin,n:AbpIdentity.Users.Create,pn:R,pk:admin,n:AbpIdentity.Users.Update,pn:R,pk:admin,n:AbpIdentity.Users.Delete,pn:R,pk:admin,n:AbpIdentity.Users.ManagePermissions,pn:R,pk:admin,n:AbpIdentity.Users.Users.Enable,pn:R,pk:admin,n:AbpIdentity.Users.Query,pn:R,pk:admin,n:FeatureManagement.ManageHostFeatures,pn:R,pk:admin,n:SettingManagement.Emailing,pn:R,pk:admin,n:AbpTenantManagement.Tenants,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Create,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Update,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Delete,pn:R,pk:admin,n:AbpTenantManagement.Tenants.ManageFeatures,pn:R,pk:admin,n:AbpTenantManagement.Tenants.ManageConnectionStrings +2021-08-22 08:50:20.953 +08:00 [DBG] Getting not cache granted permissions from the repository for this provider name,key: R,admin +2021-08-22 08:50:20.966 +08:00 [DBG] Setting the cache items. Count: 21 +2021-08-22 08:50:20.973 +08:00 [DBG] Finished setting the cache items. Count: 21 +2021-08-22 08:50:21.478 +08:00 [DBG] Executed AbpApplicationConfigurationAppService.GetAsync(). +2021-08-22 08:50:21.480 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationDto'. +2021-08-22 08:50:21.522 +08:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController.GetAsync (Volo.Abp.AspNetCore.Mvc) in 729.1214ms +2021-08-22 08:50:21.522 +08:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController.GetAsync (Volo.Abp.AspNetCore.Mvc)' +2021-08-22 08:50:21.529 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:50:21.530 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:50:21.531 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:50:21.538 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/api/abp/application-configuration - - - 200 - application/json;+charset=utf-8 889.9969ms +2021-08-22 08:50:21.951 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:50:21.952 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:50:21.952 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.8173ms +2021-08-22 08:50:21.954 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:50:21.955 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:50:21.956 +08:00 [INF] Successfully validated the token. +2021-08-22 08:50:21.972 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:50:21.972 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:50:21.972 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 17.9190ms +2021-08-22 08:50:32.758 +08:00 [DBG] Server szqh003802a:30852:504dc4d6 heartbeat successfully sent +2021-08-22 08:50:35.941 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-22 08:50:35.941 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:50:35.941 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4046ms +2021-08-22 08:50:35.943 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-22 08:50:35.944 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:50:35.946 +08:00 [INF] Successfully validated the token. +2021-08-22 08:50:35.956 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-22 08:50:35.960 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-22 08:50:35.965 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-22 08:50:35.968 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-22 08:50:35.973 +08:00 [INF] Authorization was successful. +2021-08-22 08:50:35.975 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:50:35.978 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-22 08:50:36.255 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:50:36.298 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 319.8797ms +2021-08-22 08:50:36.298 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:50:36.301 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:50:36.314 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:50:36.314 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:50:36.315 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 371.6498ms +2021-08-22 08:50:37.898 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Roles/page - - +2021-08-22 08:50:37.898 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:50:37.898 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Roles/page - - - 204 - - 0.3985ms +2021-08-22 08:50:37.900 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Roles/page application/json 29 +2021-08-22 08:50:37.901 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:50:37.902 +08:00 [INF] Successfully validated the token. +2021-08-22 08:50:37.902 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles +2021-08-22 08:50:37.906 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles +2021-08-22 08:50:37.906 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles +2021-08-22 08:50:37.908 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles +2021-08-22 08:50:37.908 +08:00 [INF] Authorization was successful. +2021-08-22 08:50:37.909 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:50:37.912 +08:00 [INF] Route matched with {action = "List", controller = "Role", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityRoleDto]] ListAsync(CompanyName.ProjectName.Roles.Dtos.PagingRoleListInput) on controller CompanyName.ProjectName.Controllers.Systems.RoleController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:50:37.982 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityRoleDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:50:37.988 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi) in 76.2775ms +2021-08-22 08:50:37.988 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:50:37.989 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:50:38.014 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:50:38.014 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:50:38.015 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Roles/page application/json 29 - 200 - application/json;+charset=utf-8 114.7774ms +2021-08-22 08:50:43.728 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/lock - - +2021-08-22 08:50:43.729 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:50:43.729 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/lock - - - 204 - - 0.3407ms +2021-08-22 08:50:43.730 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/lock application/json 64 +2021-08-22 08:50:43.730 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:50:43.731 +08:00 [INF] Successfully validated the token. +2021-08-22 08:50:43.732 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Users.Enable +2021-08-22 08:50:43.734 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Users.Enable +2021-08-22 08:50:43.734 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users.Users.Enable +2021-08-22 08:50:43.736 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users.Users.Enable +2021-08-22 08:50:43.736 +08:00 [INF] Authorization was successful. +2021-08-22 08:50:43.737 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.LockAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:50:43.740 +08:00 [INF] Route matched with {action = "Lock", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task LockAsync(CompanyName.ProjectName.Users.Dtos.LockUserInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-22 08:50:43.936 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:50:43.936 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:50:43.943 +08:00 [WRN] Lockout for user failed because lockout is not enabled for this user. +2021-08-22 08:50:43.948 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.LockAsync (CompanyName.ProjectName.HttpApi) in 208.2733ms +2021-08-22 08:50:43.948 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.LockAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:50:43.949 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:50:43.966 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:50:43.966 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:50:43.967 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/lock application/json 64 - 204 - - 236.4807ms +2021-08-22 08:50:43.987 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-08-22 08:50:43.988 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:50:43.988 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4418ms +2021-08-22 08:50:43.989 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 +2021-08-22 08:50:43.989 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:50:43.990 +08:00 [INF] Successfully validated the token. +2021-08-22 08:50:43.991 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-22 08:50:43.994 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-08-22 08:50:43.994 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-22 08:50:43.996 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-08-22 08:50:43.996 +08:00 [INF] Authorization was successful. +2021-08-22 08:50:43.997 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:50:43.997 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-08-22 08:50:44.018 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.3.3.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:50:44.031 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 33.9445ms +2021-08-22 08:50:44.031 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:50:44.033 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:50:44.048 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:50:44.048 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:50:44.048 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 29 - 200 - application/json;+charset=utf-8 58.8219ms +2021-08-22 08:50:47.368 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-22 08:50:47.368 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:50:47.369 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.7359ms +2021-08-22 08:50:47.370 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-22 08:50:47.373 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:50:47.374 +08:00 [INF] Successfully validated the token. +2021-08-22 08:50:47.375 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:50:47.378 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:50:47.741 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:50:47.779 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 400.5107ms +2021-08-22 08:50:47.779 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:50:47.814 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:50:47.828 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:50:47.828 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:50:47.829 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 458.3587ms +2021-08-22 08:50:48.780 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-22 08:50:48.781 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:50:48.781 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.3347ms +2021-08-22 08:50:48.782 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-22 08:50:48.783 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:50:48.784 +08:00 [INF] Successfully validated the token. +2021-08-22 08:50:48.785 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:50:48.789 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:50:48.956 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:50:48.966 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 177.014ms +2021-08-22 08:50:48.966 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:50:48.979 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:50:49.004 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:50:49.004 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:50:49.004 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 222.3224ms +2021-08-22 08:51:02.790 +08:00 [DBG] Server szqh003802a:30852:504dc4d6 heartbeat successfully sent +2021-08-22 08:51:29.191 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-22 08:51:29.192 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:51:29.192 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.3224ms +2021-08-22 08:51:29.193 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-22 08:51:29.193 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:51:29.195 +08:00 [INF] Successfully validated the token. +2021-08-22 08:51:29.195 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:51:29.196 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:51:29.224 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:51:29.226 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 29.9879ms +2021-08-22 08:51:29.226 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:51:29.228 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:51:29.244 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:51:29.244 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:51:29.244 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 50.9175ms +2021-08-22 08:51:32.808 +08:00 [DBG] Server szqh003802a:30852:504dc4d6 heartbeat successfully sent +2021-08-22 08:51:34.200 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-22 08:51:50.730 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-22 08:52:01.047 +08:00 [DBG] 609 recurring job(s) processed by scheduler. +2021-08-22 08:52:02.814 +08:00 [DBG] Server szqh003802a:30852:504dc4d6 heartbeat successfully sent +2021-08-22 08:52:32.821 +08:00 [DBG] Server szqh003802a:30852:504dc4d6 heartbeat successfully sent +2021-08-22 08:53:02.835 +08:00 [DBG] Server szqh003802a:30852:504dc4d6 heartbeat successfully sent +2021-08-22 08:53:17.626 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:53:17.626 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:53:17.626 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5052ms +2021-08-22 08:53:17.630 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:53:17.631 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:53:17.633 +08:00 [INF] Successfully validated the token. +2021-08-22 08:53:17.649 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:53:17.649 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:53:17.649 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 18.7596ms +2021-08-22 08:53:22.462 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:53:22.462 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:53:22.462 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4648ms +2021-08-22 08:53:22.465 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:53:22.465 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:53:22.466 +08:00 [INF] Successfully validated the token. +2021-08-22 08:53:22.483 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:53:22.483 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:53:22.483 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 18.4619ms +2021-08-22 08:53:26.516 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:53:26.516 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:53:26.516 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.3102ms +2021-08-22 08:53:26.518 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:53:26.519 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:53:26.520 +08:00 [INF] Successfully validated the token. +2021-08-22 08:53:26.533 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:53:26.533 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:53:26.533 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 14.9011ms +2021-08-22 08:53:27.771 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:53:27.771 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:53:27.771 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.3145ms +2021-08-22 08:53:27.773 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:53:27.773 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:53:27.775 +08:00 [INF] Successfully validated the token. +2021-08-22 08:53:27.789 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:53:27.789 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:53:27.789 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 15.7683ms +2021-08-22 08:53:29.414 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:53:29.414 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:53:29.415 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4308ms +2021-08-22 08:53:29.416 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:53:29.417 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:53:29.418 +08:00 [INF] Successfully validated the token. +2021-08-22 08:53:29.440 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:53:29.440 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:53:29.441 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 24.3274ms +2021-08-22 08:53:31.824 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:53:31.825 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:53:31.825 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.3597ms +2021-08-22 08:53:31.827 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:53:31.827 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:53:31.829 +08:00 [INF] Successfully validated the token. +2021-08-22 08:53:31.841 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:53:31.841 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:53:31.841 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 14.4128ms +2021-08-22 08:53:32.854 +08:00 [DBG] Server szqh003802a:30852:504dc4d6 heartbeat successfully sent +2021-08-22 08:53:33.247 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:53:33.247 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:53:33.247 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4394ms +2021-08-22 08:53:33.249 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:53:33.250 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:53:33.251 +08:00 [INF] Successfully validated the token. +2021-08-22 08:53:33.264 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:53:33.264 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:53:33.264 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 14.5420ms +2021-08-22 08:53:35.110 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:53:35.110 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:53:35.110 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.2896ms +2021-08-22 08:53:35.112 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:53:35.112 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:53:35.113 +08:00 [INF] Successfully validated the token. +2021-08-22 08:53:35.125 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:53:35.125 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:53:35.125 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 13.3978ms +2021-08-22 08:53:35.197 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 08:53:35.198 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:53:35.198 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.3621ms +2021-08-22 08:53:35.199 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:53:35.200 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:53:35.202 +08:00 [INF] Successfully validated the token. +2021-08-22 08:53:35.202 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:53:35.206 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:53:35.375 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:53:35.381 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 174.9232ms +2021-08-22 08:53:35.381 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:53:35.396 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:53:35.412 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:53:35.412 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:53:35.412 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 212.3953ms +2021-08-22 08:53:38.623 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:53:38.623 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:53:38.624 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.2825ms +2021-08-22 08:53:38.625 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:53:38.626 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:53:38.627 +08:00 [INF] Successfully validated the token. +2021-08-22 08:53:38.640 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:53:38.640 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:53:38.640 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 14.9430ms +2021-08-22 08:53:39.099 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:53:39.099 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:53:39.100 +08:00 [INF] Successfully validated the token. +2021-08-22 08:53:39.100 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:53:39.101 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:53:39.117 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:53:39.117 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 16.5175ms +2021-08-22 08:53:39.117 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:53:39.119 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:53:39.132 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:53:39.132 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:53:39.132 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 33.4197ms +2021-08-22 08:53:47.200 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:53:47.200 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:53:47.200 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4649ms +2021-08-22 08:53:47.204 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:53:47.204 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:53:47.205 +08:00 [INF] Successfully validated the token. +2021-08-22 08:53:47.219 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:53:47.219 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:53:47.219 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 15.7233ms +2021-08-22 08:53:48.101 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 08:53:48.101 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:53:48.102 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.2354ms +2021-08-22 08:53:48.103 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:53:48.103 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:53:48.105 +08:00 [INF] Successfully validated the token. +2021-08-22 08:53:48.105 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:53:48.106 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:53:48.121 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:53:48.121 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 15.3414ms +2021-08-22 08:53:48.121 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:53:48.123 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:53:48.136 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:53:48.136 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:53:48.136 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 32.7817ms +2021-08-22 08:53:50.224 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-22 08:53:51.269 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:53:51.270 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:53:51.270 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.2494ms +2021-08-22 08:53:51.272 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:53:51.272 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:53:51.273 +08:00 [INF] Successfully validated the token. +2021-08-22 08:53:51.286 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:53:51.286 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:53:51.286 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 14.6144ms +2021-08-22 08:53:52.121 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:53:52.122 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:53:52.123 +08:00 [INF] Successfully validated the token. +2021-08-22 08:53:52.123 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:53:52.123 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:53:52.141 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:53:52.141 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 17.9536ms +2021-08-22 08:53:52.141 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:53:52.143 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:53:52.160 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:53:52.160 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:53:52.161 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 39.0018ms +2021-08-22 08:54:01.055 +08:00 [DBG] 644 recurring job(s) processed by scheduler. +2021-08-22 08:54:02.867 +08:00 [DBG] Server szqh003802a:30852:504dc4d6 heartbeat successfully sent +2021-08-22 08:54:05.868 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:54:05.869 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:54:05.869 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4823ms +2021-08-22 08:54:05.871 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:54:05.871 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:54:05.872 +08:00 [INF] Successfully validated the token. +2021-08-22 08:54:05.885 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:54:05.885 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:54:05.885 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 14.5540ms +2021-08-22 08:54:06.101 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 08:54:06.101 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:54:06.101 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.2699ms +2021-08-22 08:54:06.103 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:54:06.103 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:54:06.104 +08:00 [INF] Successfully validated the token. +2021-08-22 08:54:06.105 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:54:06.105 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:54:06.122 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:54:06.122 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 16.8492ms +2021-08-22 08:54:06.122 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:54:06.123 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:54:06.137 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:54:06.137 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:54:06.137 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 34.9015ms +2021-08-22 08:54:12.515 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:54:12.515 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:54:12.515 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.3300ms +2021-08-22 08:54:12.517 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:54:12.517 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:54:12.518 +08:00 [INF] Successfully validated the token. +2021-08-22 08:54:12.533 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:54:12.533 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:54:12.533 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 15.9164ms +2021-08-22 08:54:13.103 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 08:54:13.103 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:54:13.103 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.2557ms +2021-08-22 08:54:13.104 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:54:13.104 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:54:13.105 +08:00 [INF] Successfully validated the token. +2021-08-22 08:54:13.106 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:54:13.106 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:54:13.119 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:54:13.120 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 13.8315ms +2021-08-22 08:54:13.120 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:54:13.121 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:54:13.145 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:54:13.145 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:54:13.145 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 40.9267ms +2021-08-22 08:54:21.875 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:54:21.876 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:54:21.876 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.2885ms +2021-08-22 08:54:21.877 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:54:21.877 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:54:21.879 +08:00 [INF] Successfully validated the token. +2021-08-22 08:54:21.892 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:54:21.892 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:54:21.892 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 14.9087ms +2021-08-22 08:54:22.098 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 08:54:22.098 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:54:22.098 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.2327ms +2021-08-22 08:54:22.099 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:54:22.099 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:54:22.100 +08:00 [INF] Successfully validated the token. +2021-08-22 08:54:22.101 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:54:22.101 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:54:22.118 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:54:22.118 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 16.6893ms +2021-08-22 08:54:22.118 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:54:22.120 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:54:22.137 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:54:22.137 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:54:22.137 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 37.5954ms +2021-08-22 08:54:28.158 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:54:28.158 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:54:28.158 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.3083ms +2021-08-22 08:54:28.160 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:54:28.160 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:54:28.162 +08:00 [INF] Successfully validated the token. +2021-08-22 08:54:28.174 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:54:28.175 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:54:28.175 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 14.4915ms +2021-08-22 08:54:28.266 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 08:54:28.267 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:54:28.267 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.2585ms +2021-08-22 08:54:28.268 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:54:28.268 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:54:28.270 +08:00 [INF] Successfully validated the token. +2021-08-22 08:54:28.270 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:54:28.270 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:54:28.290 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:54:28.290 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 19.4763ms +2021-08-22 08:54:28.290 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:54:28.291 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:54:28.313 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:54:28.313 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:54:28.313 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 45.2158ms +2021-08-22 08:54:31.790 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:54:31.791 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:54:31.791 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.2425ms +2021-08-22 08:54:31.793 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:54:31.793 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:54:31.794 +08:00 [INF] Successfully validated the token. +2021-08-22 08:54:31.807 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:54:31.807 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:54:31.807 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 14.6345ms +2021-08-22 08:54:32.093 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:54:32.093 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:54:32.094 +08:00 [INF] Successfully validated the token. +2021-08-22 08:54:32.094 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:54:32.094 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:54:32.108 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:54:32.108 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 13.8817ms +2021-08-22 08:54:32.108 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:54:32.110 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:54:32.125 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:54:32.126 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:54:32.126 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 32.9193ms +2021-08-22 08:54:32.871 +08:00 [DBG] Server szqh003802a:30852:504dc4d6 heartbeat successfully sent +2021-08-22 08:54:36.982 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:54:36.982 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:54:36.982 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.2715ms +2021-08-22 08:54:36.984 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:54:36.984 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:54:36.985 +08:00 [INF] Successfully validated the token. +2021-08-22 08:54:36.997 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:54:36.997 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:54:36.997 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 13.2546ms +2021-08-22 08:54:37.100 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 08:54:37.101 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:54:37.101 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.2631ms +2021-08-22 08:54:37.102 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:54:37.102 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:54:37.103 +08:00 [INF] Successfully validated the token. +2021-08-22 08:54:37.104 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:54:37.104 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:54:37.125 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:54:37.126 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 21.3621ms +2021-08-22 08:54:37.126 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:54:37.128 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:54:37.147 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:54:37.147 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:54:37.147 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 44.7681ms +2021-08-22 08:54:52.270 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:54:52.270 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:54:52.270 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.3131ms +2021-08-22 08:54:52.272 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:54:52.272 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:54:52.273 +08:00 [INF] Successfully validated the token. +2021-08-22 08:54:52.286 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:54:52.286 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:54:52.286 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 13.5927ms +2021-08-22 08:54:52.370 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 08:54:52.370 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:54:52.370 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.3423ms +2021-08-22 08:54:52.372 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:54:52.373 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:54:52.374 +08:00 [INF] Successfully validated the token. +2021-08-22 08:54:52.374 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:54:52.374 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:54:52.395 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:54:52.396 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 21.3446ms +2021-08-22 08:54:52.396 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:54:52.398 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:54:52.414 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:54:52.414 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:54:52.414 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 42.0088ms +2021-08-22 08:55:02.770 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-22 08:55:02.885 +08:00 [DBG] Server szqh003802a:30852:504dc4d6 heartbeat successfully sent +2021-08-22 08:55:32.897 +08:00 [DBG] Server szqh003802a:30852:504dc4d6 heartbeat successfully sent +2021-08-22 08:55:44.652 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:55:44.652 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:55:44.652 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4545ms +2021-08-22 08:55:44.655 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:55:44.656 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:55:44.657 +08:00 [INF] Successfully validated the token. +2021-08-22 08:55:44.671 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:55:44.672 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:55:44.672 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 16.4490ms +2021-08-22 08:55:44.821 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 08:55:44.821 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:55:44.821 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.2872ms +2021-08-22 08:55:44.823 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:55:44.823 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:55:44.824 +08:00 [INF] Successfully validated the token. +2021-08-22 08:55:44.825 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:55:44.825 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:55:44.848 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:55:44.848 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 23.0961ms +2021-08-22 08:55:44.848 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:55:44.851 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:55:44.875 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:55:44.876 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:55:44.876 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 52.7560ms +2021-08-22 08:55:46.247 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:55:46.248 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:55:46.248 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4307ms +2021-08-22 08:55:46.250 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:55:46.251 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:55:46.251 +08:00 [INF] Successfully validated the token. +2021-08-22 08:55:46.263 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:55:46.263 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:55:46.263 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 12.7152ms +2021-08-22 08:55:46.345 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:55:46.345 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:55:46.347 +08:00 [INF] Successfully validated the token. +2021-08-22 08:55:46.347 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:55:46.348 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:55:46.369 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:55:46.369 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 21.7788ms +2021-08-22 08:55:46.369 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:55:46.372 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:55:46.394 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:55:46.394 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:55:46.394 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 48.7681ms +2021-08-22 08:55:49.461 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-22 08:55:49.499 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:55:49.499 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:55:49.499 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.3180ms +2021-08-22 08:55:49.501 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:55:49.501 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:55:49.502 +08:00 [INF] Successfully validated the token. +2021-08-22 08:55:49.515 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:55:49.515 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:55:49.516 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 14.4029ms +2021-08-22 08:55:49.630 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:55:49.630 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:55:49.631 +08:00 [INF] Successfully validated the token. +2021-08-22 08:55:49.632 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:55:49.632 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:55:49.650 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:55:49.650 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 17.7474ms +2021-08-22 08:55:49.650 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:55:49.652 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:55:49.672 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:55:49.672 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:55:49.672 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 42.2277ms +2021-08-22 08:55:51.110 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:55:51.111 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:55:51.111 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4095ms +2021-08-22 08:55:51.113 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:55:51.113 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:55:51.114 +08:00 [INF] Successfully validated the token. +2021-08-22 08:55:51.127 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:55:51.127 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:55:51.128 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 14.6487ms +2021-08-22 08:55:51.210 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 08:55:51.210 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:55:51.210 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.3889ms +2021-08-22 08:55:51.212 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:55:51.212 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:55:51.213 +08:00 [INF] Successfully validated the token. +2021-08-22 08:55:51.214 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:55:51.214 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:55:51.231 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:55:51.232 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 17.8649ms +2021-08-22 08:55:51.232 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:55:51.233 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:55:51.252 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:55:51.252 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:55:51.252 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 40.8888ms +2021-08-22 08:55:52.930 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:55:52.930 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:55:52.930 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.2463ms +2021-08-22 08:55:52.932 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:55:52.932 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:55:52.933 +08:00 [INF] Successfully validated the token. +2021-08-22 08:55:52.946 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:55:52.946 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:55:52.946 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 14.1392ms +2021-08-22 08:55:53.028 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:55:53.028 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:55:53.030 +08:00 [INF] Successfully validated the token. +2021-08-22 08:55:53.030 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:55:53.030 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:55:53.050 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:55:53.050 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 19.968ms +2021-08-22 08:55:53.050 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:55:53.052 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:55:53.070 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:55:53.070 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:55:53.071 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 42.6951ms +2021-08-22 08:56:01.052 +08:00 [DBG] 651 recurring job(s) processed by scheduler. +2021-08-22 08:56:02.880 +08:00 [DBG] Server szqh003802a:30852:504dc4d6 heartbeat successfully sent +2021-08-22 08:56:18.091 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:56:18.091 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:56:18.091 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.2778ms +2021-08-22 08:56:18.093 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:56:18.094 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:56:18.095 +08:00 [INF] Successfully validated the token. +2021-08-22 08:56:18.108 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:56:18.108 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:56:18.109 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 15.2269ms +2021-08-22 08:56:18.237 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 08:56:18.237 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:56:18.237 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.3385ms +2021-08-22 08:56:18.238 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:56:18.239 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:56:18.240 +08:00 [INF] Successfully validated the token. +2021-08-22 08:56:18.240 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:56:18.240 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:56:18.262 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:56:18.262 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 21.7606ms +2021-08-22 08:56:18.262 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:56:18.264 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:56:18.289 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:56:18.289 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:56:18.289 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 51.0491ms +2021-08-22 08:56:20.436 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:56:20.436 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:56:20.436 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.2802ms +2021-08-22 08:56:20.438 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:56:20.438 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:56:20.440 +08:00 [INF] Successfully validated the token. +2021-08-22 08:56:20.455 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:56:20.455 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:56:20.455 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 17.1453ms +2021-08-22 08:56:20.521 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:56:20.521 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:56:20.522 +08:00 [INF] Successfully validated the token. +2021-08-22 08:56:20.523 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:56:20.523 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:56:20.540 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:56:20.540 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 17.297ms +2021-08-22 08:56:20.540 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:56:20.542 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:56:20.563 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:56:20.563 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:56:20.563 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 42.2362ms +2021-08-22 08:56:32.878 +08:00 [DBG] Server szqh003802a:30852:504dc4d6 heartbeat successfully sent +2021-08-22 08:56:37.587 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-22 08:56:37.588 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:56:37.588 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.2369ms +2021-08-22 08:56:37.589 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-22 08:56:37.589 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:56:37.590 +08:00 [INF] Successfully validated the token. +2021-08-22 08:56:37.590 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:56:37.591 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:56:37.611 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:56:37.611 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 20.8623ms +2021-08-22 08:56:37.611 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:56:37.613 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:56:37.626 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:56:37.626 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:56:37.626 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 37.3129ms +2021-08-22 08:56:56.888 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:56:56.888 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:56:56.888 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.3288ms +2021-08-22 08:56:56.889 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:56:56.889 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:56:56.890 +08:00 [INF] Successfully validated the token. +2021-08-22 08:56:56.903 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:56:56.903 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:56:56.903 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 13.6304ms +2021-08-22 08:56:56.971 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 08:56:56.972 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:56:56.972 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.2747ms +2021-08-22 08:56:56.973 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:56:56.974 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:56:56.975 +08:00 [INF] Successfully validated the token. +2021-08-22 08:56:56.975 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:56:56.975 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:56:56.991 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:56:56.991 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 15.8309ms +2021-08-22 08:56:56.991 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:56:56.993 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:56:57.010 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:56:57.010 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:56:57.010 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 36.9931ms +2021-08-22 08:57:02.880 +08:00 [DBG] Server szqh003802a:30852:504dc4d6 heartbeat successfully sent +2021-08-22 08:57:08.584 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:57:08.585 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:57:08.585 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.2899ms +2021-08-22 08:57:08.586 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:57:08.587 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:57:08.588 +08:00 [INF] Successfully validated the token. +2021-08-22 08:57:08.600 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:08.600 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:08.600 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 13.9524ms +2021-08-22 08:57:08.708 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 08:57:08.708 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:57:08.708 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.2343ms +2021-08-22 08:57:08.710 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:57:08.710 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:57:08.711 +08:00 [INF] Successfully validated the token. +2021-08-22 08:57:08.712 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:57:08.712 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:57:08.732 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:57:08.732 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 19.4687ms +2021-08-22 08:57:08.732 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:57:08.734 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:08.751 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:08.751 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:08.751 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 41.5350ms +2021-08-22 08:57:12.371 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:57:12.371 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:57:12.371 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.2417ms +2021-08-22 08:57:12.373 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:57:12.373 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:57:12.374 +08:00 [INF] Successfully validated the token. +2021-08-22 08:57:12.386 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:12.386 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:12.387 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 14.0307ms +2021-08-22 08:57:12.446 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:57:12.446 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:57:12.447 +08:00 [INF] Successfully validated the token. +2021-08-22 08:57:12.448 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:57:12.448 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:57:12.468 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:57:12.468 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 20.5124ms +2021-08-22 08:57:12.468 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:57:12.470 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:12.496 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:12.496 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:12.497 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 50.8522ms +2021-08-22 08:57:18.760 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:57:18.760 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:57:18.760 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.2583ms +2021-08-22 08:57:18.762 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:57:18.762 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:57:18.763 +08:00 [INF] Successfully validated the token. +2021-08-22 08:57:18.774 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:18.774 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:18.775 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 12.7717ms +2021-08-22 08:57:18.839 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 08:57:18.839 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:57:18.839 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.2901ms +2021-08-22 08:57:18.841 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:57:18.841 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:57:18.842 +08:00 [INF] Successfully validated the token. +2021-08-22 08:57:18.843 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:57:18.843 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:57:18.861 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:57:18.861 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 18.4479ms +2021-08-22 08:57:18.861 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:57:18.863 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:18.882 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:18.882 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:18.882 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 41.0917ms +2021-08-22 08:57:24.450 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:57:24.450 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:57:24.450 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.2608ms +2021-08-22 08:57:24.452 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:57:24.452 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:57:24.453 +08:00 [INF] Successfully validated the token. +2021-08-22 08:57:24.468 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:24.468 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:24.468 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 15.9449ms +2021-08-22 08:57:24.545 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 08:57:24.545 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:57:24.545 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.2454ms +2021-08-22 08:57:24.547 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:57:24.547 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:57:24.548 +08:00 [INF] Successfully validated the token. +2021-08-22 08:57:24.549 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:57:24.549 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:57:24.567 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:57:24.567 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 18.8331ms +2021-08-22 08:57:24.568 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:57:24.569 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:24.587 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:24.587 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:24.587 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 40.7094ms +2021-08-22 08:57:29.499 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:57:29.499 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:57:29.500 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.2339ms +2021-08-22 08:57:29.501 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:57:29.502 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:57:29.503 +08:00 [INF] Successfully validated the token. +2021-08-22 08:57:29.528 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:29.528 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:29.528 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.5811ms +2021-08-22 08:57:29.570 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 08:57:29.570 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:57:29.570 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.5967ms +2021-08-22 08:57:29.573 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:57:29.573 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:57:29.575 +08:00 [INF] Successfully validated the token. +2021-08-22 08:57:29.576 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:57:29.576 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:57:29.593 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:57:29.594 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 17.5903ms +2021-08-22 08:57:29.594 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:57:29.596 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:29.619 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:29.619 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:29.619 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 46.4506ms +2021-08-22 08:57:30.995 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:57:30.995 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:57:30.995 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.2709ms +2021-08-22 08:57:30.997 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:57:30.997 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:57:30.998 +08:00 [INF] Successfully validated the token. +2021-08-22 08:57:31.009 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:31.009 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:31.009 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 12.3321ms +2021-08-22 08:57:31.058 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:57:31.058 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:57:31.059 +08:00 [INF] Successfully validated the token. +2021-08-22 08:57:31.060 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:57:31.060 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:57:31.075 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:57:31.076 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 15.5424ms +2021-08-22 08:57:31.076 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:57:31.077 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:31.093 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:31.093 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:31.093 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 35.3709ms +2021-08-22 08:57:32.885 +08:00 [DBG] Server szqh003802a:30852:504dc4d6 heartbeat successfully sent +2021-08-22 08:57:34.161 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:57:34.161 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:57:34.161 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.2430ms +2021-08-22 08:57:34.162 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:57:34.163 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:57:34.164 +08:00 [INF] Successfully validated the token. +2021-08-22 08:57:34.176 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:34.176 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:34.177 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 14.1751ms +2021-08-22 08:57:34.235 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:57:34.236 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:57:34.236 +08:00 [INF] Successfully validated the token. +2021-08-22 08:57:34.237 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:57:34.237 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:57:34.251 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:57:34.252 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 14.5509ms +2021-08-22 08:57:34.252 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:57:34.253 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:34.274 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:34.274 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:34.274 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 38.6974ms +2021-08-22 08:57:37.785 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:57:37.785 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:57:37.786 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.3495ms +2021-08-22 08:57:37.787 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:57:37.788 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:57:37.789 +08:00 [INF] Successfully validated the token. +2021-08-22 08:57:37.800 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:37.800 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:37.801 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 13.2779ms +2021-08-22 08:57:37.851 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 08:57:37.851 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:57:37.852 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.3574ms +2021-08-22 08:57:37.853 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:57:37.854 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:57:37.855 +08:00 [INF] Successfully validated the token. +2021-08-22 08:57:37.856 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:57:37.856 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:57:37.875 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:57:37.875 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 19.6405ms +2021-08-22 08:57:37.876 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:57:37.878 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:37.899 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:37.899 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:37.899 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 45.6334ms +2021-08-22 08:57:58.008 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:57:58.008 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:57:58.008 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.3525ms +2021-08-22 08:57:58.011 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:57:58.011 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:57:58.012 +08:00 [INF] Successfully validated the token. +2021-08-22 08:57:58.028 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:58.028 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:58.028 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 17.5297ms +2021-08-22 08:57:58.177 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 08:57:58.178 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:57:58.178 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.9465ms +2021-08-22 08:57:58.182 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:57:58.182 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:57:58.185 +08:00 [INF] Successfully validated the token. +2021-08-22 08:57:58.187 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:57:58.187 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:57:58.211 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:57:58.211 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 24.395ms +2021-08-22 08:57:58.211 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:57:58.213 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:58.235 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:58.235 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:57:58.235 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 53.4455ms +2021-08-22 08:58:01.060 +08:00 [DBG] 861 recurring job(s) processed by scheduler. +2021-08-22 08:58:02.897 +08:00 [DBG] Server szqh003802a:30852:504dc4d6 heartbeat successfully sent +2021-08-22 08:58:32.127 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:58:32.127 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:58:32.127 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.3198ms +2021-08-22 08:58:32.129 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:58:32.129 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:58:32.130 +08:00 [INF] Successfully validated the token. +2021-08-22 08:58:32.155 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:58:32.155 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:58:32.155 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 25.8914ms +2021-08-22 08:58:32.221 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 08:58:32.221 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:58:32.221 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.3863ms +2021-08-22 08:58:32.224 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:58:32.224 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:58:32.226 +08:00 [INF] Successfully validated the token. +2021-08-22 08:58:32.227 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:58:32.227 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:58:32.245 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:58:32.245 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 18.4941ms +2021-08-22 08:58:32.245 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:58:32.247 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:58:32.266 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:58:32.266 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:58:32.267 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 42.4094ms +2021-08-22 08:58:32.907 +08:00 [DBG] Server szqh003802a:30852:504dc4d6 heartbeat successfully sent +2021-08-22 08:58:39.987 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:58:39.987 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:58:39.987 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.2880ms +2021-08-22 08:58:39.990 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:58:39.990 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:58:39.991 +08:00 [INF] Successfully validated the token. +2021-08-22 08:58:40.023 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:58:40.023 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:58:40.023 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 33.0288ms +2021-08-22 08:58:40.073 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 08:58:40.073 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:58:40.073 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.2524ms +2021-08-22 08:58:40.076 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:58:40.077 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:58:40.078 +08:00 [INF] Successfully validated the token. +2021-08-22 08:58:40.079 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:58:40.079 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:58:40.099 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:58:40.099 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 20.3852ms +2021-08-22 08:58:40.099 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:58:40.101 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:58:40.123 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:58:40.123 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:58:40.123 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 46.7923ms +2021-08-22 08:58:41.568 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:58:41.568 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:58:41.569 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.2548ms +2021-08-22 08:58:41.570 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:58:41.571 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:58:41.572 +08:00 [INF] Successfully validated the token. +2021-08-22 08:58:41.584 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:58:41.584 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:58:41.585 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 14.2499ms +2021-08-22 08:58:42.014 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:58:42.014 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:58:42.015 +08:00 [INF] Successfully validated the token. +2021-08-22 08:58:42.016 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:58:42.016 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:58:42.030 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:58:42.030 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 13.7985ms +2021-08-22 08:58:42.030 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:58:42.032 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:58:42.057 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:58:42.057 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:58:42.057 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 43.3031ms +2021-08-22 08:58:48.698 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:58:48.698 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:58:48.698 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.2614ms +2021-08-22 08:58:48.700 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:58:48.700 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:58:48.702 +08:00 [INF] Successfully validated the token. +2021-08-22 08:58:48.714 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:58:48.714 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:58:48.715 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 14.8035ms +2021-08-22 08:58:49.014 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 08:58:49.014 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:58:49.014 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.2903ms +2021-08-22 08:58:49.016 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:58:49.016 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:58:49.017 +08:00 [INF] Successfully validated the token. +2021-08-22 08:58:49.018 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:58:49.018 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:58:49.033 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:58:49.033 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 14.8293ms +2021-08-22 08:58:49.033 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:58:49.034 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:58:49.061 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:58:49.061 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:58:49.061 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 44.7659ms +2021-08-22 08:58:53.190 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:58:53.190 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:58:53.190 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.2643ms +2021-08-22 08:58:53.192 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:58:53.192 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:58:53.194 +08:00 [INF] Successfully validated the token. +2021-08-22 08:58:53.207 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:58:53.207 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:58:53.207 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 14.8158ms +2021-08-22 08:58:54.006 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:58:54.006 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:58:54.007 +08:00 [INF] Successfully validated the token. +2021-08-22 08:58:54.008 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:58:54.008 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:58:54.024 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:58:54.024 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 15.8108ms +2021-08-22 08:58:54.024 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:58:54.026 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:58:54.052 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:58:54.052 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:58:54.052 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 46.4187ms +2021-08-22 08:58:57.696 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:58:57.696 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:58:57.696 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.2600ms +2021-08-22 08:58:57.698 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:58:57.698 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:58:57.699 +08:00 [INF] Successfully validated the token. +2021-08-22 08:58:57.713 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:58:57.713 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:58:57.713 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 14.9378ms +2021-08-22 08:58:58.018 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 08:58:58.019 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:58:58.019 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.2432ms +2021-08-22 08:58:58.020 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:58:58.020 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:58:58.021 +08:00 [INF] Successfully validated the token. +2021-08-22 08:58:58.022 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:58:58.022 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:58:58.037 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:58:58.037 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 15.162ms +2021-08-22 08:58:58.037 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:58:58.039 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:58:58.053 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:58:58.053 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:58:58.053 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 33.3547ms +2021-08-22 08:59:02.912 +08:00 [DBG] Server szqh003802a:30852:504dc4d6 heartbeat successfully sent +2021-08-22 08:59:09.039 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:59:09.039 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:59:09.039 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.3661ms +2021-08-22 08:59:09.041 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:59:09.041 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:59:09.042 +08:00 [INF] Successfully validated the token. +2021-08-22 08:59:09.069 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:59:09.069 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:59:09.069 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 28.7013ms +2021-08-22 08:59:09.135 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 08:59:09.135 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:59:09.135 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.3435ms +2021-08-22 08:59:09.138 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:59:09.138 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:59:09.140 +08:00 [INF] Successfully validated the token. +2021-08-22 08:59:09.141 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:59:09.141 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:59:09.165 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:59:09.166 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 24.8751ms +2021-08-22 08:59:09.166 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:59:09.169 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:59:09.193 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:59:09.193 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:59:09.193 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 55.4656ms +2021-08-22 08:59:24.366 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:59:24.366 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:59:24.366 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.2651ms +2021-08-22 08:59:24.368 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:59:24.368 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:59:24.369 +08:00 [INF] Successfully validated the token. +2021-08-22 08:59:24.396 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:59:24.396 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:59:24.396 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 28.1073ms +2021-08-22 08:59:24.998 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 08:59:24.998 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:59:24.998 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.2752ms +2021-08-22 08:59:25.000 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:59:25.000 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:59:25.001 +08:00 [INF] Successfully validated the token. +2021-08-22 08:59:25.001 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:59:25.001 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:59:25.014 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:59:25.014 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 12.8356ms +2021-08-22 08:59:25.014 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:59:25.015 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:59:25.037 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:59:25.037 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:59:25.037 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 36.9577ms +2021-08-22 08:59:32.936 +08:00 [DBG] Server szqh003802a:30852:504dc4d6 heartbeat successfully sent +2021-08-22 08:59:39.814 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:59:39.815 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:59:39.815 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.3460ms +2021-08-22 08:59:39.817 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:59:39.818 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:59:39.819 +08:00 [INF] Successfully validated the token. +2021-08-22 08:59:39.833 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:59:39.833 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:59:39.833 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 15.7111ms +2021-08-22 08:59:40.013 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 08:59:40.013 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:59:40.013 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.3501ms +2021-08-22 08:59:40.016 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:59:40.016 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:59:40.017 +08:00 [INF] Successfully validated the token. +2021-08-22 08:59:40.017 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:59:40.018 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:59:40.036 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:59:40.037 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 18.9797ms +2021-08-22 08:59:40.037 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:59:40.039 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:59:40.062 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:59:40.062 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:59:40.062 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 46.1467ms +2021-08-22 08:59:41.341 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:59:41.341 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:59:41.341 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.2824ms +2021-08-22 08:59:41.344 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:59:41.344 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:59:41.345 +08:00 [INF] Successfully validated the token. +2021-08-22 08:59:41.364 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:59:41.364 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:59:41.364 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 20.1854ms +2021-08-22 08:59:42.003 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:59:42.003 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:59:42.005 +08:00 [INF] Successfully validated the token. +2021-08-22 08:59:42.005 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:59:42.005 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:59:42.026 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:59:42.026 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 20.2247ms +2021-08-22 08:59:42.026 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:59:42.028 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:59:42.057 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:59:42.057 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:59:42.057 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 54.2405ms +2021-08-22 08:59:43.323 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:59:43.323 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:59:43.323 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.3073ms +2021-08-22 08:59:43.325 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:59:43.325 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:59:43.326 +08:00 [INF] Successfully validated the token. +2021-08-22 08:59:43.339 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:59:43.339 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:59:43.339 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 13.8964ms +2021-08-22 08:59:44.004 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:59:44.004 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:59:44.005 +08:00 [INF] Successfully validated the token. +2021-08-22 08:59:44.006 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:59:44.006 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:59:44.019 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:59:44.019 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 13.4332ms +2021-08-22 08:59:44.019 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:59:44.020 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:59:44.045 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:59:44.045 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:59:44.045 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 40.9763ms +2021-08-22 08:59:48.792 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:59:48.792 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:59:48.792 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.3620ms +2021-08-22 08:59:48.794 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:59:48.794 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:59:48.795 +08:00 [INF] Successfully validated the token. +2021-08-22 08:59:48.807 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:59:48.807 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:59:48.807 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 13.4208ms +2021-08-22 08:59:49.001 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 08:59:49.002 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:59:49.002 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.2816ms +2021-08-22 08:59:49.004 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:59:49.004 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:59:49.006 +08:00 [INF] Successfully validated the token. +2021-08-22 08:59:49.007 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:59:49.007 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:59:49.025 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:59:49.025 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 18.4006ms +2021-08-22 08:59:49.025 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:59:49.027 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:59:49.057 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:59:49.057 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:59:49.058 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 53.4507ms +2021-08-22 08:59:51.843 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:59:51.843 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:59:51.843 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.3179ms +2021-08-22 08:59:51.845 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:59:51.845 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:59:51.846 +08:00 [INF] Successfully validated the token. +2021-08-22 08:59:51.859 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:59:51.859 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:59:51.859 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 14.3754ms +2021-08-22 08:59:52.001 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:59:52.002 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:59:52.003 +08:00 [INF] Successfully validated the token. +2021-08-22 08:59:52.004 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:59:52.004 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:59:52.023 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:59:52.023 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 18.5514ms +2021-08-22 08:59:52.023 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:59:52.025 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:59:52.045 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:59:52.045 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:59:52.045 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 44.0841ms +2021-08-22 08:59:56.176 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 08:59:56.176 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:59:56.176 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.2597ms +2021-08-22 08:59:56.178 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 08:59:56.178 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:59:56.179 +08:00 [INF] Successfully validated the token. +2021-08-22 08:59:56.192 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:59:56.192 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:59:56.192 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 13.9399ms +2021-08-22 08:59:56.996 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 08:59:56.997 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:59:56.997 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.2771ms +2021-08-22 08:59:56.999 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 08:59:56.999 +08:00 [INF] CORS policy execution successful. +2021-08-22 08:59:57.000 +08:00 [INF] Successfully validated the token. +2021-08-22 08:59:57.001 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:59:57.001 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 08:59:57.015 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 08:59:57.015 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 13.9121ms +2021-08-22 08:59:57.015 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 08:59:57.017 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:59:57.029 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:59:57.029 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 08:59:57.030 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 30.7366ms +2021-08-22 09:00:01.067 +08:00 [DBG] 760 recurring job(s) processed by scheduler. +2021-08-22 09:00:02.154 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:00:02.154 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:00:02.154 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.2447ms +2021-08-22 09:00:02.156 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:00:02.156 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:00:02.157 +08:00 [INF] Successfully validated the token. +2021-08-22 09:00:02.181 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:00:02.181 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:00:02.181 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 25.2074ms +2021-08-22 09:00:02.695 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-22 09:00:02.954 +08:00 [DBG] Server szqh003802a:30852:504dc4d6 heartbeat successfully sent +2021-08-22 09:00:03.006 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:00:03.006 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:00:03.006 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.2969ms +2021-08-22 09:00:03.007 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:00:03.007 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:00:03.008 +08:00 [INF] Successfully validated the token. +2021-08-22 09:00:03.009 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:00:03.009 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:00:03.022 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:00:03.022 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 13.0446ms +2021-08-22 09:00:03.022 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:00:03.023 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:00:03.035 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:00:03.035 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:00:03.035 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 28.1051ms +2021-08-22 09:00:09.904 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:00:09.904 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:00:09.904 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.2475ms +2021-08-22 09:00:09.905 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:00:09.905 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:00:09.906 +08:00 [INF] Successfully validated the token. +2021-08-22 09:00:09.931 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:00:09.931 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:00:09.931 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 25.7318ms +2021-08-22 09:00:10.029 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:00:10.029 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:00:10.029 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.2680ms +2021-08-22 09:00:10.032 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:00:10.032 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:00:10.033 +08:00 [INF] Successfully validated the token. +2021-08-22 09:00:10.034 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:00:10.034 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:00:10.054 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:00:10.054 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 20.152ms +2021-08-22 09:00:10.054 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:00:10.056 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:00:10.077 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:00:10.077 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:00:10.077 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 45.0400ms +2021-08-22 09:00:13.840 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:00:13.840 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:00:13.840 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.2516ms +2021-08-22 09:00:13.842 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:00:13.842 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:00:13.843 +08:00 [INF] Successfully validated the token. +2021-08-22 09:00:13.855 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:00:13.855 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:00:13.855 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 13.1774ms +2021-08-22 09:00:13.998 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:00:13.998 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:00:13.999 +08:00 [INF] Successfully validated the token. +2021-08-22 09:00:14.000 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:00:14.000 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:00:14.018 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:00:14.018 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 17.9968ms +2021-08-22 09:00:14.018 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:00:14.020 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:00:14.037 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:00:14.038 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:00:14.038 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 39.6694ms +2021-08-22 09:00:17.870 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:00:17.870 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:00:17.870 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.2687ms +2021-08-22 09:00:17.871 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:00:17.871 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:00:17.873 +08:00 [INF] Successfully validated the token. +2021-08-22 09:00:17.885 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:00:17.885 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:00:17.885 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 13.6282ms +2021-08-22 09:00:17.993 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:00:17.993 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:00:17.993 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.2786ms +2021-08-22 09:00:17.994 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:00:17.994 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:00:17.996 +08:00 [INF] Successfully validated the token. +2021-08-22 09:00:17.996 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:00:17.996 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:00:18.016 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:00:18.017 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 20.2483ms +2021-08-22 09:00:18.017 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:00:18.019 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:00:18.038 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:00:18.038 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:00:18.038 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 43.9760ms +2021-08-22 09:00:19.182 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:00:19.182 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:00:19.182 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.3589ms +2021-08-22 09:00:19.186 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:00:19.186 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:00:19.187 +08:00 [INF] Successfully validated the token. +2021-08-22 09:00:19.200 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:00:19.200 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:00:19.200 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 14.1385ms +2021-08-22 09:00:19.997 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:00:19.998 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:00:19.999 +08:00 [INF] Successfully validated the token. +2021-08-22 09:00:19.999 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:00:20.000 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:00:20.013 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:00:20.013 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 13.1732ms +2021-08-22 09:00:20.013 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:00:20.014 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:00:20.040 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:00:20.041 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:00:20.041 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 43.1719ms +2021-08-22 09:00:32.973 +08:00 [DBG] Server szqh003802a:30852:504dc4d6 heartbeat successfully sent +2021-08-22 09:01:02.992 +08:00 [DBG] Server szqh003802a:30852:504dc4d6 heartbeat successfully sent +2021-08-22 09:01:33.001 +08:00 [DBG] Server szqh003802a:30852:504dc4d6 heartbeat successfully sent +2021-08-22 09:02:01.327 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-22 09:02:03.028 +08:00 [DBG] Server szqh003802a:30852:504dc4d6 heartbeat successfully sent +2021-08-22 09:02:33.040 +08:00 [DBG] Server szqh003802a:30852:504dc4d6 heartbeat successfully sent +2021-08-22 09:03:03.056 +08:00 [DBG] Server szqh003802a:30852:504dc4d6 heartbeat successfully sent +2021-08-22 09:03:33.062 +08:00 [DBG] Server szqh003802a:30852:504dc4d6 heartbeat successfully sent +2021-08-22 09:04:03.082 +08:00 [DBG] Server szqh003802a:30852:504dc4d6 heartbeat successfully sent +2021-08-22 09:04:19.622 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:04:19.622 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:04:19.622 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.3394ms +2021-08-22 09:04:19.624 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:04:19.625 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:04:19.626 +08:00 [INF] Successfully validated the token. +2021-08-22 09:04:19.640 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:04:19.640 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:04:19.640 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 15.5730ms +2021-08-22 09:04:19.655 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:04:19.655 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:04:19.655 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.2323ms +2021-08-22 09:04:19.657 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:04:19.657 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:04:19.660 +08:00 [INF] Successfully validated the token. +2021-08-22 09:04:19.671 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:04:19.671 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:04:19.671 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 14.0507ms +2021-08-22 09:04:20.331 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-22 09:04:33.091 +08:00 [DBG] Server szqh003802a:30852:504dc4d6 heartbeat successfully sent +2021-08-22 09:04:37.424 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-22 09:04:47.362 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:04:47.362 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:04:47.362 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.3350ms +2021-08-22 09:04:47.364 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:04:47.364 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:04:47.365 +08:00 [INF] Successfully validated the token. +2021-08-22 09:04:47.379 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:04:47.379 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:04:47.379 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 14.7170ms +2021-08-22 09:04:47.447 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:04:47.447 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:04:47.447 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.3194ms +2021-08-22 09:04:47.449 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:04:47.450 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:04:47.451 +08:00 [INF] Successfully validated the token. +2021-08-22 09:04:47.469 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:04:47.469 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:04:47.469 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 19.3669ms +2021-08-22 09:04:55.477 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-22 09:05:01.055 +08:00 [DBG] 308 recurring job(s) processed by scheduler. +2021-08-22 09:05:02.703 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-22 09:05:03.122 +08:00 [DBG] Server szqh003802a:30852:504dc4d6 heartbeat successfully sent +2021-08-22 09:05:11.614 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:05:11.615 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:05:11.615 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.2331ms +2021-08-22 09:05:11.616 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:05:11.616 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:05:11.617 +08:00 [INF] Successfully validated the token. +2021-08-22 09:05:11.628 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:05:11.628 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:05:11.628 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 12.3305ms +2021-08-22 09:05:11.668 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:05:11.668 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:05:11.668 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.2419ms +2021-08-22 09:05:11.670 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:05:11.670 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:05:11.671 +08:00 [INF] Successfully validated the token. +2021-08-22 09:05:11.683 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:05:11.683 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:05:11.683 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 13.6274ms +2021-08-22 09:05:33.129 +08:00 [DBG] Server szqh003802a:30852:504dc4d6 heartbeat successfully sent +2021-08-22 09:05:39.095 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:05:39.095 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:05:39.095 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.3889ms +2021-08-22 09:05:39.098 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:05:39.098 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:05:39.099 +08:00 [INF] Successfully validated the token. +2021-08-22 09:05:39.124 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:05:39.124 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:05:39.124 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.2105ms +2021-08-22 09:05:39.205 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:05:39.205 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:05:39.205 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.2627ms +2021-08-22 09:05:39.207 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:05:39.207 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:05:39.208 +08:00 [INF] Successfully validated the token. +2021-08-22 09:05:39.209 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:05:39.209 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:05:39.226 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:05:39.226 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 17.0131ms +2021-08-22 09:05:39.226 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:05:39.228 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:05:39.251 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:05:39.251 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:05:39.251 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 44.1345ms +2021-08-22 09:06:03.145 +08:00 [DBG] Server szqh003802a:30852:504dc4d6 heartbeat successfully sent +2021-08-22 09:06:04.618 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:06:04.618 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:06:04.618 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.3208ms +2021-08-22 09:06:04.620 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:06:04.620 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:06:04.621 +08:00 [INF] Successfully validated the token. +2021-08-22 09:06:04.635 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:06:04.635 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:06:04.635 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 15.4230ms +2021-08-22 09:06:04.712 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:06:04.712 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:06:04.712 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.2835ms +2021-08-22 09:06:04.714 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:06:04.714 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:06:04.716 +08:00 [INF] Successfully validated the token. +2021-08-22 09:06:04.716 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:06:04.717 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:06:04.737 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:06:04.737 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 20.2189ms +2021-08-22 09:06:04.737 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:06:04.739 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:06:04.760 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:06:04.760 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:06:04.760 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 46.0011ms +2021-08-22 09:06:14.627 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/create - - +2021-08-22 09:06:14.627 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:06:14.627 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/create - - - 204 - - 0.2331ms +2021-08-22 09:06:14.629 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/create application/json 135 +2021-08-22 09:06:14.629 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:06:14.630 +08:00 [INF] Successfully validated the token. +2021-08-22 09:06:14.631 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:06:14.633 +08:00 [INF] Route matched with {action = "Create", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task CreateAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.CreateApiScopeInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:06:14.666 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.CreateAsync (CompanyName.ProjectName.HttpApi) in 32.3342ms +2021-08-22 09:06:14.666 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:06:14.720 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:06:14.720 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:06:14.757 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:06:14.757 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:06:14.757 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/create application/json 135 - 204 - - 128.3613ms +2021-08-22 09:06:16.937 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:06:16.937 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:06:16.937 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.2291ms +2021-08-22 09:06:16.938 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:06:16.938 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:06:16.939 +08:00 [INF] Successfully validated the token. +2021-08-22 09:06:16.940 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:06:16.940 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:06:16.955 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:06:16.955 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 14.7796ms +2021-08-22 09:06:16.955 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:06:16.956 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:06:16.969 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:06:16.969 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:06:16.970 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 31.3761ms +2021-08-22 09:06:31.139 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:06:31.140 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:06:31.140 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.3661ms +2021-08-22 09:06:31.142 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:06:31.142 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:06:31.143 +08:00 [INF] Successfully validated the token. +2021-08-22 09:06:31.143 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:06:31.144 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:06:31.159 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:06:31.159 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 15.0936ms +2021-08-22 09:06:31.159 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:06:31.160 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:06:31.174 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:06:31.174 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:06:31.174 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 32.4873ms +2021-08-22 09:06:32.346 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-22 09:06:33.163 +08:00 [DBG] Server szqh003802a:30852:504dc4d6 heartbeat successfully sent +2021-08-22 09:06:33.254 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:06:33.255 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:06:33.256 +08:00 [INF] Successfully validated the token. +2021-08-22 09:06:33.256 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:06:33.256 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:06:33.271 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:06:33.271 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 15.0137ms +2021-08-22 09:06:33.271 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:06:33.273 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:06:33.287 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:06:33.287 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:06:33.288 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 33.5431ms +2021-08-22 09:06:34.393 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:06:34.393 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:06:34.394 +08:00 [INF] Successfully validated the token. +2021-08-22 09:06:34.395 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:06:34.395 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:06:34.409 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:06:34.410 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 14.5689ms +2021-08-22 09:06:34.410 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:06:34.412 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:06:34.427 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:06:34.427 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:06:34.428 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 34.7933ms +2021-08-22 09:06:38.165 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:06:38.165 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:06:38.165 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.2595ms +2021-08-22 09:06:38.167 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:06:38.167 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:06:38.168 +08:00 [INF] Successfully validated the token. +2021-08-22 09:06:38.169 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:06:38.169 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:06:38.183 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:06:38.183 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 14.6173ms +2021-08-22 09:06:38.184 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:06:38.185 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:06:38.206 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:06:38.206 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:06:38.206 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 38.7899ms +2021-08-22 09:06:46.921 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/create - - +2021-08-22 09:06:46.921 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:06:46.921 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/create - - - 204 - - 0.2634ms +2021-08-22 09:06:46.923 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/create application/json 97 +2021-08-22 09:06:46.923 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:06:46.924 +08:00 [INF] Successfully validated the token. +2021-08-22 09:06:46.925 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:06:46.925 +08:00 [INF] Route matched with {action = "Create", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task CreateAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.CreateApiScopeInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:06:46.933 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.CreateAsync (CompanyName.ProjectName.HttpApi) in 8.1769ms +2021-08-22 09:06:46.933 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:06:46.939 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:06:46.939 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:06:46.958 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:06:46.958 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:06:46.958 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/create application/json 97 - 204 - - 35.3450ms +2021-08-22 09:06:46.989 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:06:46.989 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:06:46.989 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.3090ms +2021-08-22 09:06:46.991 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:06:46.991 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:06:46.992 +08:00 [INF] Successfully validated the token. +2021-08-22 09:06:46.993 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:06:46.993 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:06:47.007 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:06:47.007 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 14.1808ms +2021-08-22 09:06:47.007 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:06:47.009 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:06:47.025 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:06:47.025 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:06:47.025 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 34.3907ms +2021-08-22 09:06:49.780 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-22 09:07:01.058 +08:00 [DBG] 728 recurring job(s) processed by scheduler. +2021-08-22 09:07:03.181 +08:00 [DBG] Server szqh003802a:30852:504dc4d6 heartbeat successfully sent +2021-08-22 09:07:15.974 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:07:15.975 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:07:15.975 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.2971ms +2021-08-22 09:07:15.976 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:07:15.977 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:07:15.978 +08:00 [INF] Successfully validated the token. +2021-08-22 09:07:15.993 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:07:15.993 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:07:15.994 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 17.0703ms +2021-08-22 09:07:16.117 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:07:16.117 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:07:16.117 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.4129ms +2021-08-22 09:07:16.119 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:07:16.120 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:07:16.121 +08:00 [INF] Successfully validated the token. +2021-08-22 09:07:16.121 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:07:16.121 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:07:16.142 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:07:16.142 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 20.6822ms +2021-08-22 09:07:16.142 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:07:16.144 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:07:16.163 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:07:16.163 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:07:16.163 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 43.5099ms +2021-08-22 09:07:22.241 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:07:22.241 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:07:22.241 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.2813ms +2021-08-22 09:07:22.243 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:07:22.243 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:07:22.244 +08:00 [INF] Successfully validated the token. +2021-08-22 09:07:22.273 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:07:22.273 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:07:22.273 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 30.4830ms +2021-08-22 09:07:22.329 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:07:22.329 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:07:22.329 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.2535ms +2021-08-22 09:07:22.331 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:07:22.331 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:07:22.332 +08:00 [INF] Successfully validated the token. +2021-08-22 09:07:22.333 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:07:22.334 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:07:22.354 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:07:22.354 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 20.5006ms +2021-08-22 09:07:22.354 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:07:22.356 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:07:22.381 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:07:22.381 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:07:22.382 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 50.5418ms +2021-08-22 09:07:26.712 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:07:26.712 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:07:26.712 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.2564ms +2021-08-22 09:07:26.715 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:07:26.715 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:07:26.716 +08:00 [INF] Successfully validated the token. +2021-08-22 09:07:26.741 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:07:26.741 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:07:26.741 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.5006ms +2021-08-22 09:07:26.803 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:07:26.803 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:07:26.804 +08:00 [INF] Successfully validated the token. +2021-08-22 09:07:26.804 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:07:26.804 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:07:26.823 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:07:26.823 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 18.6396ms +2021-08-22 09:07:26.823 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:07:26.824 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:07:26.842 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:07:26.842 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:07:26.842 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 39.7833ms +2021-08-22 09:07:30.560 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:07:30.560 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:07:30.560 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.3167ms +2021-08-22 09:07:30.562 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:07:30.562 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:07:30.563 +08:00 [INF] Successfully validated the token. +2021-08-22 09:07:30.576 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:07:30.576 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:07:30.576 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 14.5862ms +2021-08-22 09:07:30.664 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:07:30.664 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:07:30.664 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.2760ms +2021-08-22 09:07:30.666 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:07:30.667 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:07:30.668 +08:00 [INF] Successfully validated the token. +2021-08-22 09:07:30.669 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:07:30.669 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:07:30.688 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:07:30.688 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 18.8894ms +2021-08-22 09:07:30.688 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:07:30.690 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:07:30.712 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:07:30.712 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:07:30.712 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 45.7665ms +2021-08-22 09:07:33.191 +08:00 [DBG] Server szqh003802a:30852:504dc4d6 heartbeat successfully sent +2021-08-22 09:07:41.429 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:07:41.430 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:07:41.430 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.2714ms +2021-08-22 09:07:41.432 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:07:41.432 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:07:41.433 +08:00 [INF] Successfully validated the token. +2021-08-22 09:07:41.446 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:07:41.446 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:07:41.446 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 14.5348ms +2021-08-22 09:07:41.571 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:07:41.571 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:07:41.572 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.2420ms +2021-08-22 09:07:41.573 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:07:41.573 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:07:41.574 +08:00 [INF] Successfully validated the token. +2021-08-22 09:07:41.575 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:07:41.575 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:07:41.596 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:07:41.597 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 22.2498ms +2021-08-22 09:07:41.597 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:07:41.599 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:07:41.631 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:07:41.631 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:07:41.631 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 58.3738ms +2021-08-22 09:07:45.064 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:07:45.064 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:07:45.065 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.3841ms +2021-08-22 09:07:45.068 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:07:45.068 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:07:45.070 +08:00 [INF] Successfully validated the token. +2021-08-22 09:07:45.084 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:07:45.084 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:07:45.084 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 16.5977ms +2021-08-22 09:07:45.204 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:07:45.204 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:07:45.205 +08:00 [INF] Successfully validated the token. +2021-08-22 09:07:45.206 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:07:45.206 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:07:45.226 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:07:45.227 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 20.5346ms +2021-08-22 09:07:45.227 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:07:45.229 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:07:45.256 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:07:45.256 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:07:45.256 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 52.4065ms +2021-08-22 09:07:48.693 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:07:48.693 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:07:48.693 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.2591ms +2021-08-22 09:07:48.695 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:07:48.695 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:07:48.696 +08:00 [INF] Successfully validated the token. +2021-08-22 09:07:48.709 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:07:48.709 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:07:48.709 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 14.0348ms +2021-08-22 09:07:48.777 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:07:48.777 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:07:48.777 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.3017ms +2021-08-22 09:07:48.779 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:07:48.779 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:07:48.780 +08:00 [INF] Successfully validated the token. +2021-08-22 09:07:48.780 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:07:48.781 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:07:48.798 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:07:48.798 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 17.5566ms +2021-08-22 09:07:48.798 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:07:48.800 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:07:48.818 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:07:48.818 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:07:48.818 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 39.6211ms +2021-08-22 09:07:57.477 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:07:57.477 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:07:57.477 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.4156ms +2021-08-22 09:07:57.479 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:07:57.479 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:07:57.480 +08:00 [INF] Successfully validated the token. +2021-08-22 09:07:57.481 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:07:57.481 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:07:57.496 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:07:57.496 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 14.9112ms +2021-08-22 09:07:57.496 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:07:57.497 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:07:57.513 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:07:57.513 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:07:57.513 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 34.0902ms +2021-08-22 09:08:03.202 +08:00 [DBG] Server szqh003802a:30852:504dc4d6 heartbeat successfully sent +2021-08-22 09:08:31.351 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:08:31.351 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:08:31.351 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.3626ms +2021-08-22 09:08:31.353 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:08:31.354 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:08:31.355 +08:00 [INF] Successfully validated the token. +2021-08-22 09:08:31.355 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:08:31.355 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:08:31.370 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:08:31.370 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 14.692ms +2021-08-22 09:08:31.370 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:08:31.372 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:08:31.387 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:08:31.387 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:08:31.387 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 33.9825ms +2021-08-22 09:08:33.207 +08:00 [DBG] Server szqh003802a:30852:504dc4d6 heartbeat successfully sent +2021-08-22 09:08:33.334 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-22 09:08:40.929 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:08:40.929 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:08:40.929 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.2381ms +2021-08-22 09:08:40.930 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:08:40.931 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:08:40.932 +08:00 [INF] Successfully validated the token. +2021-08-22 09:08:40.933 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:08:40.933 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:08:40.949 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:08:40.949 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 16.4703ms +2021-08-22 09:08:40.949 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:08:40.951 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:08:40.965 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:08:40.965 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:08:40.965 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 34.6535ms +2021-08-22 09:08:45.875 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:08:45.875 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:08:45.876 +08:00 [INF] Successfully validated the token. +2021-08-22 09:08:45.877 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:08:45.877 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:08:45.894 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:08:45.894 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 16.6841ms +2021-08-22 09:08:45.894 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:08:45.896 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:08:45.912 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:08:45.912 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:08:45.912 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 36.8657ms +2021-08-22 09:08:50.420 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-22 09:08:52.776 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:08:52.776 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:08:52.776 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.2841ms +2021-08-22 09:08:52.778 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:08:52.778 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:08:52.779 +08:00 [INF] Successfully validated the token. +2021-08-22 09:08:52.780 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:08:52.780 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:08:52.796 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:08:52.796 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 15.7475ms +2021-08-22 09:08:52.796 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:08:52.798 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:08:52.814 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:08:52.814 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:08:52.814 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 35.6926ms +2021-08-22 09:08:55.058 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:08:55.058 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:08:55.059 +08:00 [INF] Successfully validated the token. +2021-08-22 09:08:55.060 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:08:55.060 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:08:55.076 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:08:55.076 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 16.2821ms +2021-08-22 09:08:55.076 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:08:55.078 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:08:55.093 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:08:55.093 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:08:55.093 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 34.9929ms +2021-08-22 09:08:56.289 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:08:56.289 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:08:56.290 +08:00 [INF] Successfully validated the token. +2021-08-22 09:08:56.291 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:08:56.291 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:08:56.307 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:08:56.307 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 16.3422ms +2021-08-22 09:08:56.307 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:08:56.309 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:08:56.326 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:08:56.326 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:08:56.326 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 36.9111ms +2021-08-22 09:09:01.052 +08:00 [DBG] 608 recurring job(s) processed by scheduler. +2021-08-22 09:09:02.753 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/delete - - +2021-08-22 09:09:02.753 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:09:02.753 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/delete - - - 204 - - 0.2940ms +2021-08-22 09:09:02.755 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/delete application/json 2 +2021-08-22 09:09:02.755 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:09:02.756 +08:00 [INF] Successfully validated the token. +2021-08-22 09:09:02.757 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.DeleteAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:09:02.759 +08:00 [INF] Route matched with {action = "Delete", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task DeleteAsync(CompanyName.ProjectName.Publics.Dtos.IdInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:09:02.810 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.DeleteAsync (CompanyName.ProjectName.HttpApi) in 51.5999ms +2021-08-22 09:09:02.811 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.DeleteAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:09:02.812 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:09:02.827 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:09:02.827 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:09:02.827 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/delete application/json 2 - 204 - - 72.0107ms +2021-08-22 09:09:02.848 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:09:02.849 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:09:02.849 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.2521ms +2021-08-22 09:09:02.851 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:09:02.851 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:09:02.852 +08:00 [INF] Successfully validated the token. +2021-08-22 09:09:02.852 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:09:02.852 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:09:02.867 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:09:02.867 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 15.011ms +2021-08-22 09:09:02.867 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:09:02.869 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:09:02.885 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:09:02.885 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:09:02.885 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 34.1458ms +2021-08-22 09:09:03.243 +08:00 [DBG] Server szqh003802a:30852:504dc4d6 heartbeat successfully sent +2021-08-22 09:09:06.045 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:09:06.045 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:09:06.046 +08:00 [INF] Successfully validated the token. +2021-08-22 09:09:06.046 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:09:06.047 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:09:06.061 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:09:06.061 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 14.4114ms +2021-08-22 09:09:06.061 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:09:06.062 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:09:06.089 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:09:06.089 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:09:06.089 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 43.8961ms +2021-08-22 09:09:06.666 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:09:06.667 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:09:06.668 +08:00 [INF] Successfully validated the token. +2021-08-22 09:09:06.668 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:09:06.668 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:09:06.682 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:09:06.682 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 13.9185ms +2021-08-22 09:09:06.682 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:09:06.684 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:09:06.698 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:09:06.698 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:09:06.698 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 31.4579ms +2021-08-22 09:09:06.870 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:09:06.870 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:09:06.871 +08:00 [INF] Successfully validated the token. +2021-08-22 09:09:06.872 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:09:06.872 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:09:06.886 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:09:06.886 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 14.4568ms +2021-08-22 09:09:06.886 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:09:06.888 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:09:06.901 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:09:06.901 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:09:06.902 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 31.5979ms +2021-08-22 09:09:15.126 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/delete - - +2021-08-22 09:09:15.126 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:09:15.126 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/delete - - - 204 - - 0.3121ms +2021-08-22 09:09:15.128 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/delete application/json 2 +2021-08-22 09:09:15.128 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:09:15.129 +08:00 [INF] Successfully validated the token. +2021-08-22 09:09:15.130 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.DeleteAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:09:15.130 +08:00 [INF] Route matched with {action = "Delete", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task DeleteAsync(CompanyName.ProjectName.Publics.Dtos.IdInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:09:15.141 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.DeleteAsync (CompanyName.ProjectName.HttpApi) in 11.144ms +2021-08-22 09:09:15.141 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.DeleteAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:09:15.143 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:09:15.159 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:09:15.159 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:09:15.159 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/delete application/json 2 - 204 - - 30.9506ms +2021-08-22 09:09:15.184 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:09:15.185 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:09:15.185 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.2487ms +2021-08-22 09:09:15.188 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:09:15.188 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:09:15.189 +08:00 [INF] Successfully validated the token. +2021-08-22 09:09:15.190 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:09:15.190 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:09:15.209 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:09:15.209 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 18.6832ms +2021-08-22 09:09:15.209 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:09:15.211 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:09:15.229 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:09:15.230 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:09:15.230 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 42.2440ms +2021-08-22 09:09:33.259 +08:00 [DBG] Server szqh003802a:30852:504dc4d6 heartbeat successfully sent +2021-08-22 09:10:40.086 +08:00 [INF] Starting CompanyName.ProjectName.HttpApi.Host. +2021-08-22 09:10:44.493 +08:00 [INF] User profile is available. Using 'C:\Users\wangjun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. +2021-08-22 09:10:44.632 +08:00 [INF] Loaded ABP modules: +2021-08-22 09:10:44.632 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiHostModule +2021-08-22 09:10:44.632 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiModule +2021-08-22 09:10:44.632 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationContractsModule +2021-08-22 09:10:44.632 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainSharedModule +2021-08-22 09:10:44.632 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule +2021-08-22 09:10:44.632 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainSharedModule +2021-08-22 09:10:44.632 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule +2021-08-22 09:10:44.632 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2021-08-22 09:10:44.632 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule +2021-08-22 09:10:44.632 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2021-08-22 09:10:44.632 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2021-08-22 09:10:44.632 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2021-08-22 09:10:44.632 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule +2021-08-22 09:10:44.632 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2021-08-22 09:10:44.632 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule +2021-08-22 09:10:44.632 +08:00 [INF] - Volo.Abp.Data.AbpDataModule +2021-08-22 09:10:44.632 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule +2021-08-22 09:10:44.632 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2021-08-22 09:10:44.632 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule +2021-08-22 09:10:44.632 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2021-08-22 09:10:44.632 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2021-08-22 09:10:44.632 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule +2021-08-22 09:10:44.632 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule +2021-08-22 09:10:44.632 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainSharedModule +2021-08-22 09:10:44.632 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2021-08-22 09:10:44.632 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2021-08-22 09:10:44.632 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule +2021-08-22 09:10:44.632 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule +2021-08-22 09:10:44.632 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2021-08-22 09:10:44.632 +08:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2021-08-22 09:10:44.632 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2021-08-22 09:10:44.632 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2021-08-22 09:10:44.632 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule +2021-08-22 09:10:44.633 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationContractsModule +2021-08-22 09:10:44.633 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainSharedModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.UI.AbpUiModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule +2021-08-22 09:10:44.633 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementHttpApiModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.Caching.StackExchangeRedis.AbpCachingStackExchangeRedisModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule +2021-08-22 09:10:44.633 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationModule +2021-08-22 09:10:44.633 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.PermissionManagement.IdentityServer.AbpPermissionManagementDomainIdentityServerModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule +2021-08-22 09:10:44.633 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule +2021-08-22 09:10:44.633 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainModule +2021-08-22 09:10:44.633 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainSharedModule +2021-08-22 09:10:44.633 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationModule +2021-08-22 09:10:44.633 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreDbMigrationsModule +2021-08-22 09:10:44.633 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.IdentityServer.EntityFrameworkCore.AbpIdentityServerEntityFrameworkCoreModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.MySQL.AbpEntityFrameworkCoreMySQLModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.BackgroundJobs.EntityFrameworkCore.AbpBackgroundJobsEntityFrameworkCoreModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule +2021-08-22 09:10:44.633 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.FreeSqlMySql.QueryManagementFreeSqlMySqlModule +2021-08-22 09:10:44.633 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.EntityFrameworkCore.DataDictionaryManagementEntityFrameworkCoreModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.BackgroundJobs.Hangfire.AbpBackgroundJobsHangfireModule +2021-08-22 09:10:44.633 +08:00 [INF] - Volo.Abp.Hangfire.AbpHangfireModule +2021-08-22 09:10:44.722 +08:00 [DBG] Started background worker: Volo.Abp.BackgroundJobs.BackgroundJobWorker +2021-08-22 09:10:44.724 +08:00 [DBG] Started background worker: Volo.Abp.IdentityServer.Tokens.TokenCleanupBackgroundWorker +2021-08-22 09:10:44.867 +08:00 [INF] DB tables already exist. Exit install +2021-08-22 09:10:44.881 +08:00 [INF] Starting Hangfire Server using job storage: 'Server: localhost@CompanyNameProjectNameHangfireDB' +2021-08-22 09:10:44.881 +08:00 [INF] Using the following options for SQL Server job storage: +2021-08-22 09:10:44.881 +08:00 [INF] Queue poll interval: 00:00:15. +2021-08-22 09:10:44.881 +08:00 [INF] Using the following options for Hangfire Server: + Worker count: 20 + Listening queues: 'default' + Shutdown timeout: 00:00:15 + Schedule polling interval: 00:00:15 +2021-08-22 09:10:44.903 +08:00 [DBG] Execution loop BackgroundServerProcess:4e8688ec has started in 5.677 ms +2021-08-22 09:10:45.008 +08:00 [INF] Server szqh003802a:22784:221fb6d3 successfully announced in 97.1766 ms +2021-08-22 09:10:45.012 +08:00 [INF] Server szqh003802a:22784:221fb6d3 is starting the registered dispatchers: ServerWatchdog, ServerJobCancellationWatcher, ExpirationManager, CountersAggregator, Worker, DelayedJobScheduler, RecurringJobScheduler... +2021-08-22 09:10:45.012 +08:00 [DBG] Execution loop ServerHeartbeatProcess:576257ea has started in 3.2902 ms +2021-08-22 09:10:45.014 +08:00 [DBG] Execution loop ServerWatchdog:581fbba1 has started in 2.0245 ms +2021-08-22 09:10:45.015 +08:00 [DBG] Execution loop ServerJobCancellationWatcher:2790c0dc has started in 3.3841 ms +2021-08-22 09:10:45.018 +08:00 [DBG] Execution loop ExpirationManager:e602d2d4 has started in 3.0046 ms +2021-08-22 09:10:45.019 +08:00 [DBG] Execution loop CountersAggregator:0b1fb3b5 has started in 3.4733 ms +2021-08-22 09:10:45.021 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-22 09:10:45.021 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-08-22 09:10:45.022 +08:00 [DBG] Execution loop Worker:de20c750 has started in 3.9318 ms +2021-08-22 09:10:45.023 +08:00 [DBG] Execution loop Worker:b0964435 has started in 5.5045 ms +2021-08-22 09:10:45.025 +08:00 [DBG] Execution loop Worker:562b9460 has started in 7.5688 ms +2021-08-22 09:10:45.028 +08:00 [DBG] Execution loop Worker:471451ce has started in 9.8459 ms +2021-08-22 09:10:45.029 +08:00 [DBG] Execution loop Worker:fb3da809 has started in 11.44 ms +2021-08-22 09:10:45.032 +08:00 [DBG] Execution loop Worker:21be0a2a has started in 14.1741 ms +2021-08-22 09:10:45.033 +08:00 [DBG] Execution loop Worker:22c48eb9 has started in 15.4327 ms +2021-08-22 09:10:45.036 +08:00 [DBG] Execution loop Worker:cab952c8 has started in 17.2921 ms +2021-08-22 09:10:45.036 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-08-22 09:10:45.037 +08:00 [DBG] Execution loop Worker:30fa8f70 has started in 19.2928 ms +2021-08-22 09:10:45.039 +08:00 [DBG] Execution loop Worker:9a075274 has started in 21.4362 ms +2021-08-22 09:10:45.044 +08:00 [DBG] Execution loop Worker:51d7247b has started in 26.3162 ms +2021-08-22 09:10:45.048 +08:00 [DBG] Execution loop Worker:d267e2e3 has started in 30.0329 ms +2021-08-22 09:10:45.054 +08:00 [DBG] Execution loop Worker:feae3c18 has started in 35.9736 ms +2021-08-22 09:10:45.058 +08:00 [DBG] Execution loop Worker:3419eeb7 has started in 40.047 ms +2021-08-22 09:10:45.061 +08:00 [DBG] Execution loop Worker:2bf91499 has started in 42.892 ms +2021-08-22 09:10:45.067 +08:00 [DBG] Execution loop Worker:a83029c6 has started in 49.5374 ms +2021-08-22 09:10:45.072 +08:00 [DBG] Execution loop Worker:1fd442bf has started in 53.9994 ms +2021-08-22 09:10:45.078 +08:00 [DBG] Execution loop Worker:a018cdda has started in 60.1716 ms +2021-08-22 09:10:45.088 +08:00 [DBG] Execution loop Worker:06f0d55d has started in 69.9012 ms +2021-08-22 09:10:45.091 +08:00 [DBG] removed records count=1 +2021-08-22 09:10:45.094 +08:00 [DBG] Execution loop Worker:a33b0695 has started in 76.0697 ms +2021-08-22 09:10:45.097 +08:00 [INF] Server szqh003802a:22784:221fb6d3 all the dispatchers started +2021-08-22 09:10:45.097 +08:00 [DBG] Execution loop DelayedJobScheduler:1ce9f3ec has started in 9.9701 ms +2021-08-22 09:10:45.100 +08:00 [DBG] Execution loop RecurringJobScheduler:2eb12951 has started in 6.2907 ms +2021-08-22 09:10:45.655 +08:00 [INF] Initialized all ABP modules. +2021-08-22 09:10:45.725 +08:00 [INF] Now listening on: http://localhost:44315 +2021-08-22 09:10:45.725 +08:00 [INF] Application started. Press Ctrl+C to shut down. +2021-08-22 09:10:45.725 +08:00 [INF] Hosting environment: Development +2021-08-22 09:10:45.726 +08:00 [INF] Content root path: D:\abp\aspnet-core\services\src\CompanyName.ProjectName.HttpApi.Host +2021-08-22 09:10:45.985 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/ - - +2021-08-22 09:10:46.096 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-08-22 09:10:46.106 +08:00 [DBG] removed records count=0 +2021-08-22 09:10:46.106 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-08-22 09:10:46.111 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-08-22 09:10:46.130 +08:00 [DBG] removed records count=19 +2021-08-22 09:10:47.138 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-08-22 09:10:47.146 +08:00 [DBG] removed records count=0 +2021-08-22 09:10:47.146 +08:00 [DBG] Removing outdated records from table 'List'... +2021-08-22 09:10:47.147 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-08-22 09:10:47.155 +08:00 [DBG] removed records count=0 +2021-08-22 09:10:47.155 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-08-22 09:10:47.157 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-08-22 09:10:47.165 +08:00 [DBG] removed records count=0 +2021-08-22 09:10:47.165 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-08-22 09:10:47.167 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-08-22 09:10:47.176 +08:00 [DBG] removed records count=0 +2021-08-22 09:10:48.434 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-08-22 09:10:48.517 +08:00 [INF] Route matched with {action = "Index", controller = "Home", area = "", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult Index() on controller CompanyName.ProjectName.Controllers.HomeController (CompanyName.ProjectName.HttpApi.Host). +2021-08-22 09:10:48.556 +08:00 [INF] Executing RedirectResult, redirecting to /swagger. +2021-08-22 09:10:48.564 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host) in 43.1663ms +2021-08-22 09:10:48.565 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-08-22 09:10:48.587 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/ - - - 302 0 - 2604.1959ms +2021-08-22 09:10:48.603 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/index.html - - +2021-08-22 09:10:48.659 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/index.html - - - 200 - text/html;charset=utf-8 55.9141ms +2021-08-22 09:10:48.821 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - +2021-08-22 09:10:49.195 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 374.0394ms +2021-08-22 09:10:56.327 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - +2021-08-22 09:10:56.535 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 208.1076ms +2021-08-22 09:11:01.064 +08:00 [DBG] 866 recurring job(s) processed by scheduler. +2021-08-22 09:11:15.047 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:11:16.976 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:11:16.984 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:11:16.991 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 14.9377ms +2021-08-22 09:11:16.993 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:11:16.994 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:11:17.064 +08:00 [INF] Successfully validated the token. +2021-08-22 09:11:17.112 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:11:17.113 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:11:17.113 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 1.5295ms +2021-08-22 09:11:17.116 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:11:17.118 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:11:17.121 +08:00 [INF] Successfully validated the token. +2021-08-22 09:11:17.123 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:11:17.146 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:11:17.664 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:11:17.664 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:11:17.670 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 676.6121ms +2021-08-22 09:11:18.238 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:11:18.257 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 1111.5181ms +2021-08-22 09:11:18.258 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:11:18.271 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:11:18.332 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:11:18.332 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:11:18.333 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 1216.4836ms +2021-08-22 09:11:21.072 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/delete - - +2021-08-22 09:11:21.072 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:11:21.072 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/delete - - - 204 - - 0.5040ms +2021-08-22 09:11:21.074 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/delete application/json 45 +2021-08-22 09:11:21.074 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:11:21.077 +08:00 [INF] Successfully validated the token. +2021-08-22 09:11:21.078 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.DeleteAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:11:21.080 +08:00 [INF] Route matched with {action = "Delete", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task DeleteAsync(CompanyName.ProjectName.Publics.Dtos.IdInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:11:21.245 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.DeleteAsync (CompanyName.ProjectName.HttpApi) in 164.1036ms +2021-08-22 09:11:21.245 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.DeleteAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:11:21.295 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:11:21.295 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:11:21.352 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:11:21.352 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:11:21.353 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/delete application/json 45 - 204 - - 278.7899ms +2021-08-22 09:11:21.382 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:11:21.382 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:11:21.385 +08:00 [INF] Successfully validated the token. +2021-08-22 09:11:21.386 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:11:21.386 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:11:21.420 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:11:21.420 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 34.1613ms +2021-08-22 09:11:21.421 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:11:21.424 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:11:21.453 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:11:21.453 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:11:21.453 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 71.6330ms +2021-08-22 09:11:24.809 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/delete application/json 45 +2021-08-22 09:11:24.810 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:11:24.812 +08:00 [INF] Successfully validated the token. +2021-08-22 09:11:24.813 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.DeleteAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:11:24.814 +08:00 [INF] Route matched with {action = "Delete", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task DeleteAsync(CompanyName.ProjectName.Publics.Dtos.IdInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:11:24.843 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.DeleteAsync (CompanyName.ProjectName.HttpApi) in 28.9302ms +2021-08-22 09:11:24.843 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.DeleteAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:11:24.856 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:11:24.856 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:11:24.886 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:11:24.886 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:11:24.887 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/delete application/json 45 - 204 - - 77.2415ms +2021-08-22 09:11:24.904 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:11:24.904 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:11:24.904 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.4532ms +2021-08-22 09:11:24.906 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:11:24.906 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:11:24.908 +08:00 [INF] Successfully validated the token. +2021-08-22 09:11:24.910 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:11:24.910 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:11:24.943 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:11:24.943 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 33.5674ms +2021-08-22 09:11:24.943 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:11:24.946 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:11:24.973 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:11:24.974 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:11:24.974 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 67.9576ms +2021-08-22 09:11:26.436 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:11:26.437 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:11:26.439 +08:00 [INF] Successfully validated the token. +2021-08-22 09:11:26.440 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:11:26.440 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:11:26.469 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:11:26.469 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 29.0166ms +2021-08-22 09:11:26.469 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:11:26.472 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:11:26.499 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:11:26.500 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:11:26.500 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 63.4338ms +2021-08-22 09:11:26.610 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:11:26.611 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:11:26.613 +08:00 [INF] Successfully validated the token. +2021-08-22 09:11:26.614 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:11:26.614 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:11:26.646 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:11:26.646 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 31.3796ms +2021-08-22 09:11:26.646 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:11:26.649 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:11:26.674 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:11:26.674 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:11:26.674 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 63.6977ms +2021-08-22 09:11:26.775 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:11:26.775 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:11:26.778 +08:00 [INF] Successfully validated the token. +2021-08-22 09:11:26.779 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:11:26.779 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:11:26.810 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:11:26.810 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 30.8143ms +2021-08-22 09:11:26.810 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:11:26.813 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:11:26.837 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:11:26.838 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:11:26.838 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 62.8737ms +2021-08-22 09:11:27.090 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:11:27.090 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:11:27.093 +08:00 [INF] Successfully validated the token. +2021-08-22 09:11:27.094 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:11:27.095 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:11:27.126 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:11:27.126 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 31.2477ms +2021-08-22 09:11:27.126 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:11:27.129 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:11:27.153 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:11:27.153 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:11:27.153 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 63.3237ms +2021-08-22 09:11:45.062 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:12:15.071 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:12:45.088 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:12:55.814 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:12:55.814 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:12:55.815 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5655ms +2021-08-22 09:12:55.817 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:12:55.817 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:12:55.820 +08:00 [INF] Successfully validated the token. +2021-08-22 09:12:55.844 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:12:55.844 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:12:55.844 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 27.7290ms +2021-08-22 09:12:55.934 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:12:55.934 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:12:55.934 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.5161ms +2021-08-22 09:12:55.936 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:12:55.936 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:12:55.939 +08:00 [INF] Successfully validated the token. +2021-08-22 09:12:55.940 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:12:55.940 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:12:55.973 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:12:55.973 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 32.5901ms +2021-08-22 09:12:55.973 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:12:55.977 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:12:56.005 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:12:56.005 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:12:56.006 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 69.8861ms +2021-08-22 09:13:01.053 +08:00 [DBG] 777 recurring job(s) processed by scheduler. +2021-08-22 09:13:07.512 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:13:07.512 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:13:07.513 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6235ms +2021-08-22 09:13:07.514 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:13:07.514 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:13:07.517 +08:00 [INF] Successfully validated the token. +2021-08-22 09:13:07.539 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:13:07.539 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:13:07.540 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 25.5178ms +2021-08-22 09:13:07.591 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:13:07.591 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:13:07.592 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.6033ms +2021-08-22 09:13:07.594 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:13:07.594 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:13:07.598 +08:00 [INF] Successfully validated the token. +2021-08-22 09:13:07.600 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:13:07.600 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:13:07.634 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:13:07.634 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 33.7898ms +2021-08-22 09:13:07.634 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:13:07.638 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:13:07.674 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:13:07.674 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:13:07.674 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 79.9772ms +2021-08-22 09:13:15.123 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:13:16.736 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:13:16.736 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:13:16.736 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 1.1994ms +2021-08-22 09:13:16.738 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:13:16.738 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:13:16.741 +08:00 [INF] Successfully validated the token. +2021-08-22 09:13:16.765 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:13:16.765 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:13:16.765 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 27.1758ms +2021-08-22 09:13:16.832 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:13:16.833 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:13:16.833 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.5253ms +2021-08-22 09:13:16.834 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:13:16.835 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:13:16.837 +08:00 [INF] Successfully validated the token. +2021-08-22 09:13:16.839 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:13:16.839 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:13:16.872 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:13:16.872 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 32.9016ms +2021-08-22 09:13:16.872 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:13:16.875 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:13:16.911 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:13:16.911 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:13:16.911 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 76.7751ms +2021-08-22 09:13:28.503 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:13:28.504 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:13:28.504 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5275ms +2021-08-22 09:13:28.505 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:13:28.506 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:13:28.508 +08:00 [INF] Successfully validated the token. +2021-08-22 09:13:28.532 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:13:28.532 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:13:28.532 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.9367ms +2021-08-22 09:13:28.595 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:13:28.596 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:13:28.596 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.6267ms +2021-08-22 09:13:28.599 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:13:28.599 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:13:28.602 +08:00 [INF] Successfully validated the token. +2021-08-22 09:13:28.604 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:13:28.604 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:13:28.638 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:13:28.639 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 34.3349ms +2021-08-22 09:13:28.639 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:13:28.643 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:13:28.675 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:13:28.675 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:13:28.676 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 77.0548ms +2021-08-22 09:13:29.833 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:13:29.834 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:13:29.834 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5076ms +2021-08-22 09:13:29.836 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:13:29.836 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:13:29.838 +08:00 [INF] Successfully validated the token. +2021-08-22 09:13:29.862 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:13:29.862 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:13:29.862 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.3620ms +2021-08-22 09:13:29.922 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:13:29.922 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:13:29.925 +08:00 [INF] Successfully validated the token. +2021-08-22 09:13:29.926 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:13:29.927 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:13:29.966 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:13:29.966 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 39.5745ms +2021-08-22 09:13:29.967 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:13:29.971 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:13:30.003 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:13:30.003 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:13:30.003 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 81.5117ms +2021-08-22 09:13:35.022 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:13:35.023 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:13:35.023 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4798ms +2021-08-22 09:13:35.024 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:13:35.025 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:13:35.027 +08:00 [INF] Successfully validated the token. +2021-08-22 09:13:35.073 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:13:35.073 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:13:35.073 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 48.7398ms +2021-08-22 09:13:35.121 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:13:35.121 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:13:35.121 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.5396ms +2021-08-22 09:13:35.123 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:13:35.124 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:13:35.126 +08:00 [INF] Successfully validated the token. +2021-08-22 09:13:35.128 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:13:35.128 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:13:35.161 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:13:35.162 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 33.509ms +2021-08-22 09:13:35.162 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:13:35.167 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:13:35.196 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:13:35.196 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:13:35.196 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 72.8838ms +2021-08-22 09:13:45.179 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:13:49.192 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:13:49.193 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:13:49.193 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4624ms +2021-08-22 09:13:49.195 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:13:49.195 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:13:49.198 +08:00 [INF] Successfully validated the token. +2021-08-22 09:13:49.234 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:13:49.234 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:13:49.234 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 39.6771ms +2021-08-22 09:13:49.334 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:13:49.334 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:13:49.334 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.4703ms +2021-08-22 09:13:49.336 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:13:49.336 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:13:49.338 +08:00 [INF] Successfully validated the token. +2021-08-22 09:13:49.340 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:13:49.340 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:13:49.375 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:13:49.375 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 35.6938ms +2021-08-22 09:13:49.376 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:13:49.379 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:13:49.409 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:13:49.409 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:13:49.410 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 73.9378ms +2021-08-22 09:13:54.354 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:13:54.354 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:13:54.354 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5250ms +2021-08-22 09:13:54.356 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:13:54.356 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:13:54.359 +08:00 [INF] Successfully validated the token. +2021-08-22 09:13:54.384 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:13:54.384 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:13:54.384 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 28.2138ms +2021-08-22 09:13:54.455 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:13:54.456 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:13:54.456 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.4859ms +2021-08-22 09:13:54.457 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:13:54.458 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:13:54.460 +08:00 [INF] Successfully validated the token. +2021-08-22 09:13:54.461 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:13:54.462 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:13:54.495 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:13:54.496 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 33.7192ms +2021-08-22 09:13:54.496 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:13:54.500 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:13:54.528 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:13:54.528 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:13:54.528 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 70.8861ms +2021-08-22 09:14:15.210 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:14:45.231 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:15:01.050 +08:00 [DBG] 708 recurring job(s) processed by scheduler. +2021-08-22 09:15:04.628 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:15:04.628 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:15:04.629 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5603ms +2021-08-22 09:15:04.631 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:15:04.631 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:15:04.634 +08:00 [INF] Successfully validated the token. +2021-08-22 09:15:04.662 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:04.662 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:04.662 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 31.2300ms +2021-08-22 09:15:04.762 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:15:04.763 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:15:04.763 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.5698ms +2021-08-22 09:15:04.765 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:15:04.765 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:15:04.768 +08:00 [INF] Successfully validated the token. +2021-08-22 09:15:04.770 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:15:04.770 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:15:04.808 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:15:04.809 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 38.9094ms +2021-08-22 09:15:04.809 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:15:04.814 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:04.849 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:04.849 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:04.849 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 84.2112ms +2021-08-22 09:15:07.000 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:15:07.000 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:15:07.001 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4789ms +2021-08-22 09:15:07.002 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:15:07.003 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:15:07.005 +08:00 [INF] Successfully validated the token. +2021-08-22 09:15:07.027 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:07.027 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:07.027 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 24.8508ms +2021-08-22 09:15:07.101 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:15:07.101 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:15:07.104 +08:00 [INF] Successfully validated the token. +2021-08-22 09:15:07.106 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:15:07.106 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:15:07.139 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:15:07.139 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 32.7257ms +2021-08-22 09:15:07.139 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:15:07.144 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:07.175 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:07.175 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:07.176 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 75.2441ms +2021-08-22 09:15:09.512 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:15:09.512 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:15:09.512 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4662ms +2021-08-22 09:15:09.514 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:15:09.514 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:15:09.517 +08:00 [INF] Successfully validated the token. +2021-08-22 09:15:09.541 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:09.541 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:09.541 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 27.4028ms +2021-08-22 09:15:09.606 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:15:09.607 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:15:09.610 +08:00 [INF] Successfully validated the token. +2021-08-22 09:15:09.611 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:15:09.611 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:15:09.642 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:15:09.643 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 31.4073ms +2021-08-22 09:15:09.643 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:15:09.647 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:09.681 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:09.681 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:09.682 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 75.2185ms +2021-08-22 09:15:15.019 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:15:15.019 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:15:15.019 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4775ms +2021-08-22 09:15:15.021 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:15:15.022 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:15:15.024 +08:00 [INF] Successfully validated the token. +2021-08-22 09:15:15.048 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:15.048 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:15.048 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.3888ms +2021-08-22 09:15:15.114 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:15:15.114 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:15:15.114 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.5734ms +2021-08-22 09:15:15.116 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:15:15.116 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:15:15.118 +08:00 [INF] Successfully validated the token. +2021-08-22 09:15:15.120 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:15:15.120 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:15:15.151 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:15:15.152 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 31.6753ms +2021-08-22 09:15:15.152 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:15:15.156 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:15.188 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:15.188 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:15.188 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 72.4588ms +2021-08-22 09:15:15.236 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:15:19.092 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:15:19.092 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:15:19.092 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4946ms +2021-08-22 09:15:19.094 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:15:19.094 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:15:19.096 +08:00 [INF] Successfully validated the token. +2021-08-22 09:15:19.121 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:19.121 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:19.121 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 27.4752ms +2021-08-22 09:15:19.191 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:15:19.191 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:15:19.194 +08:00 [INF] Successfully validated the token. +2021-08-22 09:15:19.195 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:15:19.196 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:15:19.227 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:15:19.228 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 31.7739ms +2021-08-22 09:15:19.228 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:15:19.231 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:19.261 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:19.261 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:19.262 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 70.6103ms +2021-08-22 09:15:27.593 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:15:27.593 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:15:27.594 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5291ms +2021-08-22 09:15:27.595 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:15:27.595 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:15:27.598 +08:00 [INF] Successfully validated the token. +2021-08-22 09:15:27.621 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:27.621 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:27.621 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.2958ms +2021-08-22 09:15:27.688 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:15:27.688 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:15:27.688 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.5642ms +2021-08-22 09:15:27.690 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:15:27.690 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:15:27.692 +08:00 [INF] Successfully validated the token. +2021-08-22 09:15:27.693 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:15:27.694 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:15:27.724 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:15:27.725 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 30.916ms +2021-08-22 09:15:27.725 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:15:27.729 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:27.757 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:27.757 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:27.757 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 67.7035ms +2021-08-22 09:15:33.554 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:15:33.554 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:15:33.554 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5893ms +2021-08-22 09:15:33.556 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:15:33.556 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:15:33.559 +08:00 [INF] Successfully validated the token. +2021-08-22 09:15:33.592 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:33.592 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:33.592 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 35.9175ms +2021-08-22 09:15:33.665 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:15:33.665 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:15:33.665 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.7164ms +2021-08-22 09:15:33.667 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:15:33.668 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:15:33.671 +08:00 [INF] Successfully validated the token. +2021-08-22 09:15:33.672 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:15:33.672 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:15:33.702 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:15:33.703 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 30.5467ms +2021-08-22 09:15:33.703 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:15:33.706 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:33.736 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:33.736 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:33.736 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 68.9791ms +2021-08-22 09:15:45.110 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-22 09:15:45.111 +08:00 [INF] 1 servers were removed due to timeout +2021-08-22 09:15:45.320 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:15:49.562 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:15:49.562 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:15:49.563 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6412ms +2021-08-22 09:15:49.565 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:15:49.566 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:15:49.569 +08:00 [INF] Successfully validated the token. +2021-08-22 09:15:49.606 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:49.606 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:49.607 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 41.3470ms +2021-08-22 09:15:49.686 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:15:49.687 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:15:49.687 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.5929ms +2021-08-22 09:15:49.689 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:15:49.690 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:15:49.692 +08:00 [INF] Successfully validated the token. +2021-08-22 09:15:49.693 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:15:49.693 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:15:49.726 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:15:49.726 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 32.519ms +2021-08-22 09:15:49.726 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:15:49.731 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:49.766 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:49.766 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:49.766 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 76.7132ms +2021-08-22 09:15:54.443 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:15:54.444 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:15:54.444 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4572ms +2021-08-22 09:15:54.446 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:15:54.446 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:15:54.449 +08:00 [INF] Successfully validated the token. +2021-08-22 09:15:54.473 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:54.473 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:54.473 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 27.6511ms +2021-08-22 09:15:54.547 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:15:54.548 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:15:54.550 +08:00 [INF] Successfully validated the token. +2021-08-22 09:15:54.552 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:15:54.552 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:15:54.587 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:15:54.588 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 35.5748ms +2021-08-22 09:15:54.588 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:15:54.592 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:54.624 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:54.624 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:15:54.624 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 77.3252ms +2021-08-22 09:16:10.710 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:16:10.710 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:16:10.710 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 1.3372ms +2021-08-22 09:16:10.713 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:16:10.713 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:16:10.716 +08:00 [INF] Successfully validated the token. +2021-08-22 09:16:10.739 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:16:10.739 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:16:10.739 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.4417ms +2021-08-22 09:16:10.851 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:16:10.851 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:16:10.852 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.4634ms +2021-08-22 09:16:10.854 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:16:10.854 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:16:10.857 +08:00 [INF] Successfully validated the token. +2021-08-22 09:16:10.858 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:16:10.858 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:16:10.891 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:16:10.891 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 32.768ms +2021-08-22 09:16:10.891 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:16:10.895 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:16:10.927 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:16:10.927 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:16:10.927 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 73.0180ms +2021-08-22 09:16:13.843 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:16:13.843 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:16:13.844 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.7053ms +2021-08-22 09:16:13.847 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:16:13.847 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:16:13.850 +08:00 [INF] Successfully validated the token. +2021-08-22 09:16:13.873 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:16:13.873 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:16:13.873 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.6346ms +2021-08-22 09:16:13.954 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:16:13.954 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:16:13.957 +08:00 [INF] Successfully validated the token. +2021-08-22 09:16:13.958 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:16:13.958 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:16:13.992 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:16:13.992 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 33.6796ms +2021-08-22 09:16:13.992 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:16:13.997 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:16:14.031 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:16:14.031 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:16:14.032 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 77.7519ms +2021-08-22 09:16:15.342 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:16:40.022 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:16:40.022 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:16:40.022 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4909ms +2021-08-22 09:16:40.024 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:16:40.025 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:16:40.027 +08:00 [INF] Successfully validated the token. +2021-08-22 09:16:40.056 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:16:40.056 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:16:40.056 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 31.8813ms +2021-08-22 09:16:40.123 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:16:40.123 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:16:40.124 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.4418ms +2021-08-22 09:16:40.125 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:16:40.126 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:16:40.128 +08:00 [INF] Successfully validated the token. +2021-08-22 09:16:40.129 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:16:40.129 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:16:40.164 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:16:40.164 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 34.4752ms +2021-08-22 09:16:40.164 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:16:40.167 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:16:40.195 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:16:40.195 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:16:40.195 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 69.8981ms +2021-08-22 09:16:45.001 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:16:45.001 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:16:45.001 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4927ms +2021-08-22 09:16:45.003 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:16:45.004 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:16:45.006 +08:00 [INF] Successfully validated the token. +2021-08-22 09:16:45.031 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:16:45.031 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:16:45.031 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 28.0548ms +2021-08-22 09:16:45.086 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:16:45.087 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:16:45.089 +08:00 [INF] Successfully validated the token. +2021-08-22 09:16:45.091 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:16:45.091 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:16:45.124 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:16:45.124 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 32.6456ms +2021-08-22 09:16:45.124 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:16:45.128 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:16:45.158 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:16:45.158 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:16:45.158 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 72.1070ms +2021-08-22 09:16:45.375 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:16:49.060 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:16:49.060 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:16:49.060 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6904ms +2021-08-22 09:16:49.063 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:16:49.064 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:16:49.066 +08:00 [INF] Successfully validated the token. +2021-08-22 09:16:49.111 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:16:49.111 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:16:49.111 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 48.0697ms +2021-08-22 09:16:49.958 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:16:49.958 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:16:49.958 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.4595ms +2021-08-22 09:16:49.960 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:16:49.960 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:16:49.962 +08:00 [INF] Successfully validated the token. +2021-08-22 09:16:49.964 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:16:49.964 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:16:49.994 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:16:49.994 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 30.24ms +2021-08-22 09:16:49.994 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:16:49.997 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:16:50.035 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:16:50.035 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:16:50.035 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 75.1387ms +2021-08-22 09:16:52.945 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:16:52.945 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:16:52.945 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6038ms +2021-08-22 09:16:52.947 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:16:52.948 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:16:52.950 +08:00 [INF] Successfully validated the token. +2021-08-22 09:16:52.972 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:16:52.972 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:16:52.973 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 25.3167ms +2021-08-22 09:16:53.038 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:16:53.038 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:16:53.041 +08:00 [INF] Successfully validated the token. +2021-08-22 09:16:53.043 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:16:53.043 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:16:53.075 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:16:53.076 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 32.665ms +2021-08-22 09:16:53.076 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:16:53.080 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:16:53.110 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:16:53.110 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:16:53.111 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 73.3115ms +2021-08-22 09:16:57.323 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:16:57.323 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:16:57.323 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4704ms +2021-08-22 09:16:57.325 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:16:57.325 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:16:57.328 +08:00 [INF] Successfully validated the token. +2021-08-22 09:16:57.362 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:16:57.362 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:16:57.362 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 36.9506ms +2021-08-22 09:16:57.959 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:16:57.959 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:16:57.960 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.5258ms +2021-08-22 09:16:57.961 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:16:57.961 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:16:57.964 +08:00 [INF] Successfully validated the token. +2021-08-22 09:16:57.965 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:16:57.966 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:16:57.996 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:16:57.996 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 30.241ms +2021-08-22 09:16:57.996 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:16:57.999 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:16:58.027 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:16:58.027 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:16:58.028 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 66.4405ms +2021-08-22 09:17:00.816 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:17:00.816 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:17:00.816 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4494ms +2021-08-22 09:17:00.818 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:17:00.818 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:17:00.821 +08:00 [INF] Successfully validated the token. +2021-08-22 09:17:00.844 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:17:00.844 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:17:00.844 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.2536ms +2021-08-22 09:17:01.001 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:17:01.001 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:17:01.003 +08:00 [INF] Successfully validated the token. +2021-08-22 09:17:01.005 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:17:01.005 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:17:01.039 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:17:01.039 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 34.5769ms +2021-08-22 09:17:01.040 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:17:01.044 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:17:01.080 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:17:01.080 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:17:01.080 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 79.2742ms +2021-08-22 09:17:01.363 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-22 09:17:04.346 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:17:04.346 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:17:04.347 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4936ms +2021-08-22 09:17:04.348 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:17:04.349 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:17:04.351 +08:00 [INF] Successfully validated the token. +2021-08-22 09:17:04.376 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:17:04.376 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:17:04.377 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 28.0672ms +2021-08-22 09:17:05.619 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:17:05.619 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:17:05.619 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4548ms +2021-08-22 09:17:05.621 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:17:05.621 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:17:05.623 +08:00 [INF] Successfully validated the token. +2021-08-22 09:17:05.684 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:17:05.684 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:17:05.684 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 63.6595ms +2021-08-22 09:17:05.966 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:17:05.966 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:17:05.966 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.4583ms +2021-08-22 09:17:05.968 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:17:05.968 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:17:05.970 +08:00 [INF] Successfully validated the token. +2021-08-22 09:17:05.971 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:17:05.971 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:17:06.001 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:17:06.001 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 29.9358ms +2021-08-22 09:17:06.002 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:17:06.004 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:17:06.043 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:17:06.043 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:17:06.043 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 75.4389ms +2021-08-22 09:17:09.278 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:17:09.278 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:17:09.279 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4732ms +2021-08-22 09:17:09.280 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:17:09.281 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:17:09.283 +08:00 [INF] Successfully validated the token. +2021-08-22 09:17:09.333 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:17:09.333 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:17:09.333 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 52.7273ms +2021-08-22 09:17:09.959 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:17:09.959 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:17:09.962 +08:00 [INF] Successfully validated the token. +2021-08-22 09:17:09.963 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:17:09.963 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:17:09.992 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:17:09.992 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 29.4146ms +2021-08-22 09:17:09.992 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:17:09.995 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:17:10.021 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:17:10.021 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:17:10.021 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 61.8400ms +2021-08-22 09:17:15.451 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:17:26.787 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:17:26.787 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:17:26.788 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5042ms +2021-08-22 09:17:26.789 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:17:26.790 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:17:26.792 +08:00 [INF] Successfully validated the token. +2021-08-22 09:17:26.818 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:17:26.818 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:17:26.818 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 29.0340ms +2021-08-22 09:17:26.972 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:17:26.972 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:17:26.973 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.4541ms +2021-08-22 09:17:26.974 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:17:26.974 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:17:26.977 +08:00 [INF] Successfully validated the token. +2021-08-22 09:17:26.978 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:17:26.978 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:17:27.008 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:17:27.008 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 30.2003ms +2021-08-22 09:17:27.008 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:17:27.011 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:17:27.039 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:17:27.039 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:17:27.039 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 65.2374ms +2021-08-22 09:17:45.467 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:17:53.953 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:17:53.953 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:17:53.954 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5278ms +2021-08-22 09:17:53.955 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:17:53.956 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:17:53.958 +08:00 [INF] Successfully validated the token. +2021-08-22 09:17:53.991 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:17:53.991 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:17:53.991 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 36.1182ms +2021-08-22 09:17:54.066 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:17:54.067 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:17:54.067 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.5664ms +2021-08-22 09:17:54.071 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:17:54.071 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:17:54.074 +08:00 [INF] Successfully validated the token. +2021-08-22 09:17:54.076 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:17:54.077 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:17:54.107 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:17:54.108 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 30.788ms +2021-08-22 09:17:54.108 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:17:54.112 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:17:54.144 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:17:54.144 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:17:54.144 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 73.1522ms +2021-08-22 09:18:15.489 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:18:15.967 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:18:15.967 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:18:15.968 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.4338ms +2021-08-22 09:18:15.969 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:18:15.969 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:18:15.971 +08:00 [INF] Successfully validated the token. +2021-08-22 09:18:15.973 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:18:15.973 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:18:16.003 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:18:16.003 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 30.6836ms +2021-08-22 09:18:16.003 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:18:16.006 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:18:16.033 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:18:16.033 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:18:16.033 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 64.0881ms +2021-08-22 09:18:19.955 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:18:19.955 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:18:19.958 +08:00 [INF] Successfully validated the token. +2021-08-22 09:18:19.959 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:18:19.959 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:18:19.990 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:18:19.991 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 31.6265ms +2021-08-22 09:18:19.991 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:18:19.993 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:18:20.030 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:18:20.030 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:18:20.030 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 75.0497ms +2021-08-22 09:18:35.954 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:18:35.954 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:18:35.954 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.4372ms +2021-08-22 09:18:35.956 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:18:35.956 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:18:35.958 +08:00 [INF] Successfully validated the token. +2021-08-22 09:18:35.959 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:18:35.960 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:18:35.988 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:18:35.989 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 28.9582ms +2021-08-22 09:18:35.989 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:18:35.991 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:18:36.022 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:18:36.022 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:18:36.022 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 66.3228ms +2021-08-22 09:18:43.956 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:18:43.957 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:18:43.957 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.4225ms +2021-08-22 09:18:43.959 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:18:43.959 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:18:43.961 +08:00 [INF] Successfully validated the token. +2021-08-22 09:18:43.962 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:18:43.962 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:18:43.992 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:18:43.992 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 29.8594ms +2021-08-22 09:18:43.992 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:18:43.995 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:18:44.021 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:18:44.021 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:18:44.021 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 62.3398ms +2021-08-22 09:18:45.537 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:19:01.709 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-22 09:19:02.952 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:19:02.952 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:19:02.952 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.4272ms +2021-08-22 09:19:02.954 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:19:02.954 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:19:02.956 +08:00 [INF] Successfully validated the token. +2021-08-22 09:19:02.957 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:19:02.957 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:19:02.987 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:19:02.987 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 29.8342ms +2021-08-22 09:19:02.987 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:19:02.990 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:19:03.033 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:19:03.033 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:19:03.033 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 79.6679ms +2021-08-22 09:19:15.566 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:19:20.948 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:19:20.948 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:19:20.949 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.4173ms +2021-08-22 09:19:20.950 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:19:20.950 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:19:20.953 +08:00 [INF] Successfully validated the token. +2021-08-22 09:19:20.954 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:19:20.954 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:19:20.981 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:19:20.982 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 27.7783ms +2021-08-22 09:19:20.982 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:19:20.984 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:19:21.014 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:19:21.014 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:19:21.014 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 64.0297ms +2021-08-22 09:19:34.954 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:19:34.955 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:19:34.955 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.4380ms +2021-08-22 09:19:34.956 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:19:34.956 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:19:34.958 +08:00 [INF] Successfully validated the token. +2021-08-22 09:19:34.960 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:19:34.960 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:19:34.988 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:19:34.988 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 28.3809ms +2021-08-22 09:19:34.988 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:19:34.991 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:19:35.016 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:19:35.016 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:19:35.016 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 59.8969ms +2021-08-22 09:19:35.990 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:19:35.990 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:19:35.992 +08:00 [INF] Successfully validated the token. +2021-08-22 09:19:35.993 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:19:35.994 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:19:36.022 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:19:36.023 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 29.0148ms +2021-08-22 09:19:36.023 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:19:36.025 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:19:36.077 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:19:36.077 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:19:36.077 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 87.1403ms +2021-08-22 09:19:37.952 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:19:37.952 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:19:37.954 +08:00 [INF] Successfully validated the token. +2021-08-22 09:19:37.956 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:19:37.956 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:19:37.983 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:19:37.983 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 27.6021ms +2021-08-22 09:19:37.983 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:19:37.986 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:19:38.010 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:19:38.010 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:19:38.011 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 58.8054ms +2021-08-22 09:19:40.995 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:19:40.996 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:19:40.996 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.4533ms +2021-08-22 09:19:40.998 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:19:40.998 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:19:41.000 +08:00 [INF] Successfully validated the token. +2021-08-22 09:19:41.002 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:19:41.002 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:19:41.031 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:19:41.031 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 29.49ms +2021-08-22 09:19:41.031 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:19:41.034 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:19:41.060 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:19:41.060 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:19:41.060 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 62.3642ms +2021-08-22 09:19:45.671 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:20:15.687 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:20:45.131 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-22 09:20:45.707 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:21:12.620 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:21:12.621 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:21:12.621 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.4062ms +2021-08-22 09:21:12.622 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:21:12.622 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:21:12.624 +08:00 [INF] Successfully validated the token. +2021-08-22 09:21:12.626 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:21:12.626 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:21:12.655 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:21:12.655 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 29.1469ms +2021-08-22 09:21:12.655 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:21:12.658 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:21:12.692 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:21:12.692 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:21:12.693 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 70.4318ms +2021-08-22 09:21:15.724 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:21:33.289 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-22 09:21:45.745 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:21:50.272 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-22 09:22:01.052 +08:00 [DBG] 639 recurring job(s) processed by scheduler. +2021-08-22 09:22:15.778 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:22:24.844 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:22:24.845 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:22:24.845 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4456ms +2021-08-22 09:22:24.847 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:22:24.847 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:22:24.850 +08:00 [INF] Successfully validated the token. +2021-08-22 09:22:24.873 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:22:24.873 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:22:24.874 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.7979ms +2021-08-22 09:22:24.996 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:22:24.996 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:22:24.996 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.4533ms +2021-08-22 09:22:24.998 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:22:24.998 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:22:25.002 +08:00 [INF] Successfully validated the token. +2021-08-22 09:22:25.003 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:22:25.003 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:22:25.034 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:22:25.035 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 31.8513ms +2021-08-22 09:22:25.035 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:22:25.041 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:22:25.076 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:22:25.076 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:22:25.076 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 77.8813ms +2021-08-22 09:22:45.798 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:23:15.832 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:23:33.625 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-22 09:23:45.854 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:23:47.327 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:23:47.328 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:23:47.328 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.5264ms +2021-08-22 09:23:47.330 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:23:47.331 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:23:47.334 +08:00 [INF] Successfully validated the token. +2021-08-22 09:23:47.336 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:23:47.336 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:23:47.366 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:23:47.366 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 30.1539ms +2021-08-22 09:23:47.366 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:23:47.372 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:23:47.404 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:23:47.404 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:23:47.405 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 74.0773ms +2021-08-22 09:23:51.599 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-22 09:24:01.044 +08:00 [DBG] 523 recurring job(s) processed by scheduler. +2021-08-22 09:24:01.989 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/create - - +2021-08-22 09:24:01.989 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:24:01.989 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/create - - - 204 - - 0.4760ms +2021-08-22 09:24:01.991 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/create application/json 136 +2021-08-22 09:24:01.991 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:24:01.994 +08:00 [INF] Successfully validated the token. +2021-08-22 09:24:01.995 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:24:01.998 +08:00 [INF] Route matched with {action = "Create", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task CreateAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.CreateApiScopeInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:24:02.040 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.CreateAsync (CompanyName.ProjectName.HttpApi) in 42.5067ms +2021-08-22 09:24:02.040 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:24:02.067 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:24:02.067 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:24:02.096 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:24:02.096 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:24:02.096 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/create application/json 136 - 204 - - 105.1400ms +2021-08-22 09:24:02.128 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:24:02.128 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:24:02.128 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.4349ms +2021-08-22 09:24:02.130 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:24:02.130 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:24:02.133 +08:00 [INF] Successfully validated the token. +2021-08-22 09:24:02.134 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:24:02.134 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:24:02.162 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:24:02.163 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 28.3547ms +2021-08-22 09:24:02.163 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:24:02.165 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:24:02.192 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:24:02.192 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:24:02.192 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 62.0814ms +2021-08-22 09:24:09.780 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/update - - +2021-08-22 09:24:09.780 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:24:09.780 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/update - - - 204 - - 0.4359ms +2021-08-22 09:24:09.782 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/update application/json 143 +2021-08-22 09:24:09.782 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:24:09.784 +08:00 [INF] Successfully validated the token. +2021-08-22 09:24:09.786 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.UpdateAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:24:09.789 +08:00 [INF] Route matched with {action = "Update", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task UpdateAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.UpdateCreateApiScopeInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:24:09.820 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.UpdateAsync (CompanyName.ProjectName.HttpApi) in 31.3981ms +2021-08-22 09:24:09.820 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.UpdateAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:24:09.834 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:24:09.834 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:24:09.876 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:24:09.876 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:24:09.876 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/update application/json 143 - 204 - - 94.4190ms +2021-08-22 09:24:09.911 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:24:09.911 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:24:09.911 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.4853ms +2021-08-22 09:24:09.913 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:24:09.913 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:24:09.927 +08:00 [INF] Successfully validated the token. +2021-08-22 09:24:09.928 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:24:09.928 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:24:09.956 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:24:09.956 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 27.8893ms +2021-08-22 09:24:09.956 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:24:09.960 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:24:09.982 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:24:09.982 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:24:09.983 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 69.9566ms +2021-08-22 09:24:15.910 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:24:45.920 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:25:15.944 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:25:45.156 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-22 09:25:45.952 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:25:47.293 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-22 09:26:01.055 +08:00 [DBG] 850 recurring job(s) processed by scheduler. +2021-08-22 09:26:15.978 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:26:45.998 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:27:16.010 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:27:46.033 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:27:47.569 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-22 09:28:01.041 +08:00 [DBG] 837 recurring job(s) processed by scheduler. +2021-08-22 09:28:16.064 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:28:46.095 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:29:16.110 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:29:46.144 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:30:01.057 +08:00 [DBG] 908 recurring job(s) processed by scheduler. +2021-08-22 09:30:16.156 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:30:45.164 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-22 09:30:46.180 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:31:16.212 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:31:46.247 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:32:01.047 +08:00 [DBG] 901 recurring job(s) processed by scheduler. +2021-08-22 09:32:16.272 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:32:46.291 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:33:16.312 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:33:46.320 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:34:01.354 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-22 09:34:16.358 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:34:46.396 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:35:16.428 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:35:45.181 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-22 09:35:46.440 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:36:16.458 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:36:17.965 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-22 09:36:34.226 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-22 09:36:46.485 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:36:50.568 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-22 09:37:01.054 +08:00 [DBG] 637 recurring job(s) processed by scheduler. +2021-08-22 09:37:16.511 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:37:46.537 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:38:16.547 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:38:32.348 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-22 09:38:46.558 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:38:48.334 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-22 09:39:01.057 +08:00 [DBG] 781 recurring job(s) processed by scheduler. +2021-08-22 09:39:16.579 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:39:46.592 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:40:16.603 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:40:32.168 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-22 09:40:45.165 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-22 09:40:46.612 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:40:48.325 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-22 09:41:01.061 +08:00 [DBG] 785 recurring job(s) processed by scheduler. +2021-08-22 09:41:16.631 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:41:46.641 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:42:16.660 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:42:16.747 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:42:16.747 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:42:16.747 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4319ms +2021-08-22 09:42:16.749 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:42:16.750 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:42:16.752 +08:00 [INF] Successfully validated the token. +2021-08-22 09:42:16.773 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:42:16.773 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:42:16.774 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 24.3805ms +2021-08-22 09:42:16.913 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:42:16.913 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:42:16.913 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.4446ms +2021-08-22 09:42:16.914 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:42:16.914 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:42:16.917 +08:00 [INF] Successfully validated the token. +2021-08-22 09:42:16.918 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:42:16.918 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:42:16.946 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:42:16.947 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 28.6861ms +2021-08-22 09:42:16.947 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:42:16.949 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:42:16.976 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:42:16.976 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:42:16.977 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 62.2635ms +2021-08-22 09:42:26.652 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:42:26.652 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:42:26.652 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5239ms +2021-08-22 09:42:26.654 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:42:26.654 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:42:26.656 +08:00 [INF] Successfully validated the token. +2021-08-22 09:42:26.677 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:42:26.677 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:42:26.677 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 23.6232ms +2021-08-22 09:42:26.914 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:42:26.914 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:42:26.914 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.4382ms +2021-08-22 09:42:26.916 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:42:26.916 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:42:26.918 +08:00 [INF] Successfully validated the token. +2021-08-22 09:42:26.919 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:42:26.919 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:42:26.949 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:42:26.949 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 29.9029ms +2021-08-22 09:42:26.949 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:42:26.952 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:42:26.979 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:42:26.979 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:42:26.979 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 63.6915ms +2021-08-22 09:42:46.669 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:42:47.507 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-22 09:43:01.046 +08:00 [DBG] 809 recurring job(s) processed by scheduler. +2021-08-22 09:43:16.684 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:43:46.696 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:44:16.709 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:44:43.096 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:44:43.097 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:44:43.097 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.7576ms +2021-08-22 09:44:43.099 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:44:43.100 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:44:43.103 +08:00 [INF] Successfully validated the token. +2021-08-22 09:44:43.128 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:44:43.128 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:44:43.129 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 29.3617ms +2021-08-22 09:44:43.907 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:44:43.907 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:44:43.907 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.4664ms +2021-08-22 09:44:43.908 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:44:43.909 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:44:43.911 +08:00 [INF] Successfully validated the token. +2021-08-22 09:44:43.913 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:44:43.913 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:44:43.940 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:44:43.940 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 27.489ms +2021-08-22 09:44:43.940 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:44:43.943 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:44:43.979 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:44:43.979 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:44:43.979 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 70.8647ms +2021-08-22 09:44:46.736 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:44:50.729 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:44:50.729 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:44:50.729 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.8147ms +2021-08-22 09:44:50.732 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:44:50.732 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:44:50.734 +08:00 [INF] Successfully validated the token. +2021-08-22 09:44:50.755 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:44:50.755 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:44:50.755 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 23.1994ms +2021-08-22 09:44:50.920 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:44:50.920 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:44:50.920 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.4240ms +2021-08-22 09:44:50.922 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:44:50.922 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:44:50.924 +08:00 [INF] Successfully validated the token. +2021-08-22 09:44:50.925 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:44:50.926 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:44:50.953 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:44:50.954 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 28.0176ms +2021-08-22 09:44:50.954 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:44:50.957 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:44:50.981 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:44:50.981 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:44:50.982 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 59.8764ms +2021-08-22 09:45:01.046 +08:00 [DBG] 829 recurring job(s) processed by scheduler. +2021-08-22 09:45:16.751 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:45:45.172 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-22 09:45:46.758 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:45:48.476 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:45:48.476 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:45:48.476 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6037ms +2021-08-22 09:45:48.478 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:45:48.478 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:45:48.480 +08:00 [INF] Successfully validated the token. +2021-08-22 09:45:48.511 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:45:48.511 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:45:48.511 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 33.2487ms +2021-08-22 09:45:48.905 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:45:48.905 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:45:48.905 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.6175ms +2021-08-22 09:45:48.907 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:45:48.907 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:45:48.909 +08:00 [INF] Successfully validated the token. +2021-08-22 09:45:48.911 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:45:48.911 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:45:48.939 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:45:48.939 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 28.7206ms +2021-08-22 09:45:48.939 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:45:48.942 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:45:48.966 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:45:48.966 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:45:48.966 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 58.8801ms +2021-08-22 09:46:16.772 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:46:46.778 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:47:01.065 +08:00 [DBG] 835 recurring job(s) processed by scheduler. +2021-08-22 09:47:16.792 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:47:18.073 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:47:18.074 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:47:18.074 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4591ms +2021-08-22 09:47:18.075 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:47:18.076 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:47:18.079 +08:00 [INF] Successfully validated the token. +2021-08-22 09:47:18.099 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:47:18.099 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:47:18.099 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 23.9519ms +2021-08-22 09:47:18.208 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:47:18.209 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:47:18.209 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.5093ms +2021-08-22 09:47:18.212 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:47:18.212 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:47:18.214 +08:00 [INF] Successfully validated the token. +2021-08-22 09:47:18.216 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:47:18.216 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:47:18.245 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:47:18.246 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 29.2755ms +2021-08-22 09:47:18.246 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:47:18.248 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:47:18.277 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:47:18.277 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:47:18.277 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 65.8033ms +2021-08-22 09:47:21.086 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:47:21.086 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:47:21.086 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4601ms +2021-08-22 09:47:21.088 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:47:21.088 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:47:21.090 +08:00 [INF] Successfully validated the token. +2021-08-22 09:47:21.122 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:47:21.122 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:47:21.122 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 34.9499ms +2021-08-22 09:47:21.893 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:47:21.893 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:47:21.895 +08:00 [INF] Successfully validated the token. +2021-08-22 09:47:21.896 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:47:21.897 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:47:21.925 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:47:21.925 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 28.8172ms +2021-08-22 09:47:21.925 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:47:21.928 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:47:21.967 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:47:21.967 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:47:21.967 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 73.9337ms +2021-08-22 09:47:28.279 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:47:28.279 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:47:28.279 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5034ms +2021-08-22 09:47:28.282 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:47:28.282 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:47:28.285 +08:00 [INF] Successfully validated the token. +2021-08-22 09:47:28.307 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:47:28.307 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:47:28.308 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 25.9742ms +2021-08-22 09:47:28.894 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 09:47:28.894 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:47:28.894 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.4676ms +2021-08-22 09:47:28.896 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 09:47:28.896 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:47:28.898 +08:00 [INF] Successfully validated the token. +2021-08-22 09:47:28.899 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:47:28.899 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:47:28.925 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:47:28.926 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 26.1616ms +2021-08-22 09:47:28.926 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:47:28.929 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:47:28.965 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:47:28.965 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:47:28.965 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 69.6296ms +2021-08-22 09:47:31.968 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-08-22 09:47:31.968 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:47:31.968 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.6246ms +2021-08-22 09:47:31.970 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 09:47:31.971 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:47:31.974 +08:00 [INF] Successfully validated the token. +2021-08-22 09:47:31.975 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:47:31.978 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:47:32.247 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:47:32.249 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 271.6121ms +2021-08-22 09:47:32.249 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:47:32.259 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:47:32.281 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:47:32.281 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:47:32.282 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 311.8422ms +2021-08-22 09:47:46.818 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:48:16.827 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:48:46.847 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:48:47.765 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:48:47.765 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:48:47.766 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4801ms +2021-08-22 09:48:47.767 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:48:47.768 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:48:47.771 +08:00 [INF] Successfully validated the token. +2021-08-22 09:48:47.792 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:48:47.792 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:48:47.792 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 25.0656ms +2021-08-22 09:48:47.820 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:48:47.820 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:48:47.820 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4921ms +2021-08-22 09:48:47.822 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:48:47.822 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:48:47.824 +08:00 [INF] Successfully validated the token. +2021-08-22 09:48:47.846 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:48:47.846 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:48:47.846 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 24.6781ms +2021-08-22 09:49:01.413 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-22 09:49:16.855 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:49:46.868 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:50:16.878 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:50:16.879 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:50:16.879 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4756ms +2021-08-22 09:50:16.880 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:50:16.881 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:50:16.884 +08:00 [INF] Successfully validated the token. +2021-08-22 09:50:16.887 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:50:16.905 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:50:16.905 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:50:16.905 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 24.9808ms +2021-08-22 09:50:17.011 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-08-22 09:50:17.011 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:50:17.011 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.4457ms +2021-08-22 09:50:17.012 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 09:50:17.012 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:50:17.015 +08:00 [INF] Successfully validated the token. +2021-08-22 09:50:17.016 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:50:17.016 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:50:17.051 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:50:17.052 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 35.7956ms +2021-08-22 09:50:17.052 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:50:17.058 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:50:17.082 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:50:17.082 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:50:17.082 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 69.9469ms +2021-08-22 09:50:45.189 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-22 09:50:45.673 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-08-22 09:50:45.674 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:50:45.674 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.4746ms +2021-08-22 09:50:45.676 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 09:50:45.676 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:50:45.679 +08:00 [INF] Successfully validated the token. +2021-08-22 09:50:45.680 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:50:45.680 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:50:45.713 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:50:45.713 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 33.1566ms +2021-08-22 09:50:45.713 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:50:45.717 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:50:45.742 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:50:45.742 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:50:45.743 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 66.7152ms +2021-08-22 09:50:46.916 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:51:01.711 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-08-22 09:51:02.258 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-08-22 09:51:02.258 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:51:02.258 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.4602ms +2021-08-22 09:51:02.260 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 09:51:02.260 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:51:02.263 +08:00 [INF] Successfully validated the token. +2021-08-22 09:51:02.264 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:51:02.264 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:51:02.297 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:51:02.297 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 33.2506ms +2021-08-22 09:51:02.297 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:51:02.301 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:51:02.329 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:51:02.329 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:51:02.330 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 69.6581ms +2021-08-22 09:51:12.398 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:51:12.399 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:51:12.399 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4610ms +2021-08-22 09:51:12.402 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:51:12.402 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:51:12.405 +08:00 [INF] Successfully validated the token. +2021-08-22 09:51:12.438 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:51:12.438 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:51:12.438 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 36.1657ms +2021-08-22 09:51:12.509 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-08-22 09:51:12.509 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:51:12.509 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.4390ms +2021-08-22 09:51:12.512 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 09:51:12.512 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:51:12.514 +08:00 [INF] Successfully validated the token. +2021-08-22 09:51:12.516 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:51:12.516 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:51:12.551 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:51:12.552 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 35.6816ms +2021-08-22 09:51:12.552 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:51:12.557 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:51:12.586 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:51:12.586 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:51:12.586 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 74.6810ms +2021-08-22 09:51:16.986 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:51:39.696 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-08-22 09:51:39.696 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:51:39.696 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.4263ms +2021-08-22 09:51:39.697 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 09:51:39.698 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:51:39.700 +08:00 [INF] Successfully validated the token. +2021-08-22 09:51:39.701 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:51:39.701 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:51:39.735 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:51:39.735 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 33.923ms +2021-08-22 09:51:39.735 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:51:39.739 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:51:39.763 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:51:39.763 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:51:39.764 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 66.1140ms +2021-08-22 09:51:47.021 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:52:00.341 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-08-22 09:52:00.342 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:52:00.342 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.4391ms +2021-08-22 09:52:00.343 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 09:52:00.344 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:52:00.346 +08:00 [INF] Successfully validated the token. +2021-08-22 09:52:00.347 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:52:00.347 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:52:00.378 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:52:00.378 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 30.9991ms +2021-08-22 09:52:00.378 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:52:00.382 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:52:00.405 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:52:00.406 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:52:00.406 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 62.3676ms +2021-08-22 09:52:02.084 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 09:52:02.085 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:52:02.087 +08:00 [INF] Successfully validated the token. +2021-08-22 09:52:02.088 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:52:02.088 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:52:02.118 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:52:02.118 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 29.8298ms +2021-08-22 09:52:02.118 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:52:02.124 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:52:02.147 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:52:02.147 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:52:02.147 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 62.8232ms +2021-08-22 09:52:03.381 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 09:52:03.382 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:52:03.384 +08:00 [INF] Successfully validated the token. +2021-08-22 09:52:03.385 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:52:03.385 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:52:03.417 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:52:03.417 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 31.819ms +2021-08-22 09:52:03.417 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:52:03.422 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:52:03.449 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:52:03.449 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:52:03.449 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 67.6551ms +2021-08-22 09:52:17.045 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:52:47.057 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:53:03.064 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:53:03.064 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:53:03.065 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5179ms +2021-08-22 09:53:03.066 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:53:03.066 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:53:03.069 +08:00 [INF] Successfully validated the token. +2021-08-22 09:53:03.089 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:53:03.089 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:53:03.090 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 23.3584ms +2021-08-22 09:53:03.206 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-08-22 09:53:03.207 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:53:03.207 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.4472ms +2021-08-22 09:53:03.208 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 09:53:03.209 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:53:03.211 +08:00 [INF] Successfully validated the token. +2021-08-22 09:53:03.212 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:53:03.212 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:53:03.245 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:53:03.246 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 33.1322ms +2021-08-22 09:53:03.246 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:53:03.250 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:53:03.280 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:53:03.280 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:53:03.280 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 71.7650ms +2021-08-22 09:53:17.074 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:53:33.410 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-22 09:53:47.093 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:53:50.635 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-22 09:53:55.846 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:53:55.846 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:53:55.846 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4992ms +2021-08-22 09:53:55.848 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:53:55.849 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:53:55.851 +08:00 [INF] Successfully validated the token. +2021-08-22 09:53:55.874 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:53:55.874 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:53:55.874 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 25.4107ms +2021-08-22 09:53:56.004 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-08-22 09:53:56.004 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:53:56.004 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.7281ms +2021-08-22 09:53:56.009 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 09:53:56.009 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:53:56.013 +08:00 [INF] Successfully validated the token. +2021-08-22 09:53:56.016 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:53:56.016 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:53:56.064 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:53:56.065 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 48.8112ms +2021-08-22 09:53:56.065 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:53:56.071 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:53:56.109 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:53:56.109 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:53:56.110 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 100.8780ms +2021-08-22 09:54:01.052 +08:00 [DBG] 505 recurring job(s) processed by scheduler. +2021-08-22 09:54:17.103 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:54:23.481 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:54:23.481 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:54:23.481 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4439ms +2021-08-22 09:54:23.486 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:54:23.486 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:54:23.489 +08:00 [INF] Successfully validated the token. +2021-08-22 09:54:23.517 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:54:23.517 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:54:23.518 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 31.6367ms +2021-08-22 09:54:23.585 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-08-22 09:54:23.586 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:54:23.586 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.5447ms +2021-08-22 09:54:23.588 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 09:54:23.588 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:54:23.590 +08:00 [INF] Successfully validated the token. +2021-08-22 09:54:23.592 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:54:23.592 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:54:23.626 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:54:23.627 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 34.2107ms +2021-08-22 09:54:23.627 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:54:23.631 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:54:23.663 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:54:23.663 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:54:23.663 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 75.5268ms +2021-08-22 09:54:47.122 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:55:17.141 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:55:32.885 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-22 09:55:45.196 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-22 09:55:47.155 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:55:49.936 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-22 09:56:01.046 +08:00 [DBG] 656 recurring job(s) processed by scheduler. +2021-08-22 09:56:17.166 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:56:36.251 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-08-22 09:56:36.251 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:56:36.252 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.8661ms +2021-08-22 09:56:36.253 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 09:56:36.254 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:56:36.256 +08:00 [INF] Successfully validated the token. +2021-08-22 09:56:36.257 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:56:36.257 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:56:36.294 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:56:36.294 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 36.8639ms +2021-08-22 09:56:36.294 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:56:36.298 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:56:36.323 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:56:36.323 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:56:36.323 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 69.8608ms +2021-08-22 09:56:47.209 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:57:04.374 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-08-22 09:57:04.374 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:57:04.374 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.4328ms +2021-08-22 09:57:04.376 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 09:57:04.376 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:57:04.379 +08:00 [INF] Successfully validated the token. +2021-08-22 09:57:04.381 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:57:04.381 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:57:04.418 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:57:04.418 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 36.7166ms +2021-08-22 09:57:04.418 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:57:04.423 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:57:04.447 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:57:04.447 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:57:04.448 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 71.8977ms +2021-08-22 09:57:17.234 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:57:32.840 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:57:32.840 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:57:32.840 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5095ms +2021-08-22 09:57:32.842 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:57:32.843 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:57:32.846 +08:00 [INF] Successfully validated the token. +2021-08-22 09:57:32.871 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:57:32.871 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:57:32.871 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 28.7334ms +2021-08-22 09:57:32.961 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-08-22 09:57:32.962 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:57:32.962 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.4447ms +2021-08-22 09:57:32.963 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 09:57:32.964 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:57:32.966 +08:00 [INF] Successfully validated the token. +2021-08-22 09:57:32.968 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:57:32.968 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:57:33.001 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:57:33.002 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 34.1807ms +2021-08-22 09:57:33.003 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:57:33.008 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:57:33.039 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:57:33.039 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:57:33.039 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 75.6488ms +2021-08-22 09:57:42.574 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/create - - +2021-08-22 09:57:42.574 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:57:42.575 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/create - - - 204 - - 0.5503ms +2021-08-22 09:57:42.576 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/create application/json 134 +2021-08-22 09:57:42.577 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:57:42.579 +08:00 [INF] Successfully validated the token. +2021-08-22 09:57:42.580 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:57:42.583 +08:00 [INF] Route matched with {action = "Create", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task CreateAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.CreateIdentityResourceInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:57:42.709 +08:00 [WRN] ---------- RemoteServiceErrorInfo ---------- +{ + "code": null, + "message": "123\u4E0D\u5B58\u5728", + "details": null, + "data": {}, + "validationErrors": null +} + +2021-08-22 09:57:42.710 +08:00 [WRN] 123不存在 +Volo.Abp.UserFriendlyException: 123不存在 + at CompanyName.ProjectName.IdentityServer.IdentityResourceManager.CreateAsync(String name, String displayName, String description, Boolean enabled, Boolean required, Boolean emphasize, Boolean showInDiscoveryDocument) in D:\abp\aspnet-core\services\src\CompanyName.ProjectName.Domain\IdentityServer\IdentityResourceManager.cs:line 60 + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.GlobalFeatures.GlobalFeatureInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.Auditing.AuditingInterceptor.ProceedByLoggingAsync(IAbpMethodInvocation invocation, IAuditingHelper auditingHelper, IAuditLogScope auditLogScope) + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.Validation.ValidationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at lambda_method4256(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) +2021-08-22 09:57:42.710 +08:00 [WRN] Code: +2021-08-22 09:57:42.710 +08:00 [WRN] Details: +2021-08-22 09:57:42.713 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2021-08-22 09:57:42.719 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.CreateAsync (CompanyName.ProjectName.HttpApi) in 136.0277ms +2021-08-22 09:57:42.719 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:57:42.878 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:57:42.878 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:57:42.879 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/create application/json 134 - 500 - application/json;+charset=utf-8 302.3212ms +2021-08-22 09:57:47.257 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:57:50.604 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-08-22 09:58:01.065 +08:00 [DBG] 609 recurring job(s) processed by scheduler. +2021-08-22 09:58:17.287 +08:00 [DBG] Server szqh003802a:22784:221fb6d3 heartbeat successfully sent +2021-08-22 09:58:33.600 +08:00 [INF] Starting CompanyName.ProjectName.HttpApi.Host. +2021-08-22 09:58:37.953 +08:00 [INF] User profile is available. Using 'C:\Users\wangjun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. +2021-08-22 09:58:38.075 +08:00 [INF] Loaded ABP modules: +2021-08-22 09:58:38.075 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiHostModule +2021-08-22 09:58:38.075 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiModule +2021-08-22 09:58:38.075 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationContractsModule +2021-08-22 09:58:38.075 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainSharedModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainSharedModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.Data.AbpDataModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainSharedModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule +2021-08-22 09:58:38.075 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationContractsModule +2021-08-22 09:58:38.075 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainSharedModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.UI.AbpUiModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule +2021-08-22 09:58:38.075 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementHttpApiModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.Caching.StackExchangeRedis.AbpCachingStackExchangeRedisModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule +2021-08-22 09:58:38.075 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationModule +2021-08-22 09:58:38.075 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.PermissionManagement.IdentityServer.AbpPermissionManagementDomainIdentityServerModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule +2021-08-22 09:58:38.075 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule +2021-08-22 09:58:38.075 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainModule +2021-08-22 09:58:38.076 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule +2021-08-22 09:58:38.076 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2021-08-22 09:58:38.076 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2021-08-22 09:58:38.076 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule +2021-08-22 09:58:38.076 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule +2021-08-22 09:58:38.076 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule +2021-08-22 09:58:38.076 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainModule +2021-08-22 09:58:38.076 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainSharedModule +2021-08-22 09:58:38.076 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationModule +2021-08-22 09:58:38.076 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreDbMigrationsModule +2021-08-22 09:58:38.076 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreModule +2021-08-22 09:58:38.076 +08:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2021-08-22 09:58:38.076 +08:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2021-08-22 09:58:38.076 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2021-08-22 09:58:38.076 +08:00 [INF] - Volo.Abp.IdentityServer.EntityFrameworkCore.AbpIdentityServerEntityFrameworkCoreModule +2021-08-22 09:58:38.076 +08:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2021-08-22 09:58:38.076 +08:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2021-08-22 09:58:38.076 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.MySQL.AbpEntityFrameworkCoreMySQLModule +2021-08-22 09:58:38.076 +08:00 [INF] - Volo.Abp.BackgroundJobs.EntityFrameworkCore.AbpBackgroundJobsEntityFrameworkCoreModule +2021-08-22 09:58:38.076 +08:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule +2021-08-22 09:58:38.076 +08:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule +2021-08-22 09:58:38.076 +08:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule +2021-08-22 09:58:38.076 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.FreeSqlMySql.QueryManagementFreeSqlMySqlModule +2021-08-22 09:58:38.076 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.EntityFrameworkCore.DataDictionaryManagementEntityFrameworkCoreModule +2021-08-22 09:58:38.076 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule +2021-08-22 09:58:38.076 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule +2021-08-22 09:58:38.076 +08:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2021-08-22 09:58:38.076 +08:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule +2021-08-22 09:58:38.076 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule +2021-08-22 09:58:38.076 +08:00 [INF] - Volo.Abp.BackgroundJobs.Hangfire.AbpBackgroundJobsHangfireModule +2021-08-22 09:58:38.076 +08:00 [INF] - Volo.Abp.Hangfire.AbpHangfireModule +2021-08-22 09:58:38.167 +08:00 [DBG] Started background worker: Volo.Abp.BackgroundJobs.BackgroundJobWorker +2021-08-22 09:58:38.170 +08:00 [DBG] Started background worker: Volo.Abp.IdentityServer.Tokens.TokenCleanupBackgroundWorker +2021-08-22 09:58:38.312 +08:00 [INF] DB tables already exist. Exit install +2021-08-22 09:58:38.326 +08:00 [INF] Starting Hangfire Server using job storage: 'Server: localhost@CompanyNameProjectNameHangfireDB' +2021-08-22 09:58:38.326 +08:00 [INF] Using the following options for SQL Server job storage: +2021-08-22 09:58:38.326 +08:00 [INF] Queue poll interval: 00:00:15. +2021-08-22 09:58:38.326 +08:00 [INF] Using the following options for Hangfire Server: + Worker count: 20 + Listening queues: 'default' + Shutdown timeout: 00:00:15 + Schedule polling interval: 00:00:15 +2021-08-22 09:58:38.348 +08:00 [DBG] Execution loop BackgroundServerProcess:939547be has started in 5.8838 ms +2021-08-22 09:58:38.450 +08:00 [INF] Server szqh003802a:29144:78de4514 successfully announced in 94.3629 ms +2021-08-22 09:58:38.453 +08:00 [INF] Server szqh003802a:29144:78de4514 is starting the registered dispatchers: ServerWatchdog, ServerJobCancellationWatcher, ExpirationManager, CountersAggregator, Worker, DelayedJobScheduler, RecurringJobScheduler... +2021-08-22 09:58:38.454 +08:00 [DBG] Execution loop ServerHeartbeatProcess:a6b679a3 has started in 3.3635 ms +2021-08-22 09:58:38.456 +08:00 [DBG] Execution loop ServerWatchdog:1546c412 has started in 2.6204 ms +2021-08-22 09:58:38.458 +08:00 [DBG] Execution loop ServerJobCancellationWatcher:13935d52 has started in 3.2594 ms +2021-08-22 09:58:38.460 +08:00 [DBG] Execution loop ExpirationManager:66c397c4 has started in 2.871 ms +2021-08-22 09:58:38.463 +08:00 [DBG] Execution loop CountersAggregator:4247e02d has started in 5.1586 ms +2021-08-22 09:58:38.465 +08:00 [DBG] Execution loop Worker:ec127fc3 has started in 4.9985 ms +2021-08-22 09:58:38.466 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-22 09:58:38.466 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-08-22 09:58:38.467 +08:00 [DBG] Execution loop Worker:9937c462 has started in 7.0856 ms +2021-08-22 09:58:38.470 +08:00 [DBG] Execution loop Worker:d64cf253 has started in 9.9927 ms +2021-08-22 09:58:38.471 +08:00 [DBG] Execution loop Worker:49bd3ff6 has started in 11.0072 ms +2021-08-22 09:58:38.509 +08:00 [DBG] Execution loop Worker:9f057e36 has started in 49.5648 ms +2021-08-22 09:58:38.509 +08:00 [DBG] Execution loop Worker:2afaa095 has started in 49.5648 ms +2021-08-22 09:58:38.509 +08:00 [DBG] Execution loop Worker:594ca804 has started in 49.5647 ms +2021-08-22 09:58:38.512 +08:00 [DBG] Execution loop Worker:3f44b5f8 has started in 52.3697 ms +2021-08-22 09:58:38.513 +08:00 [DBG] Execution loop Worker:62092249 has started in 53.896 ms +2021-08-22 09:58:38.516 +08:00 [DBG] Execution loop Worker:c4df3594 has started in 56.1713 ms +2021-08-22 09:58:38.517 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-08-22 09:58:38.519 +08:00 [DBG] Execution loop Worker:a7425ef7 has started in 59.8211 ms +2021-08-22 09:58:38.525 +08:00 [DBG] Execution loop Worker:1f544ef3 has started in 65.033 ms +2021-08-22 09:58:38.533 +08:00 [DBG] Execution loop Worker:390a82ca has started in 73.942 ms +2021-08-22 09:58:38.540 +08:00 [DBG] Execution loop Worker:b1e30719 has started in 79.8926 ms +2021-08-22 09:58:38.543 +08:00 [DBG] Execution loop Worker:ef12bb90 has started in 83.0363 ms +2021-08-22 09:58:38.548 +08:00 [DBG] Execution loop Worker:dabf15f0 has started in 88.0886 ms +2021-08-22 09:58:38.548 +08:00 [DBG] Execution loop Worker:5b1d9787 has started in 88.1887 ms +2021-08-22 09:58:38.557 +08:00 [DBG] Execution loop Worker:e28a0e92 has started in 96.971 ms +2021-08-22 09:58:38.558 +08:00 [DBG] removed records count=0 +2021-08-22 09:58:38.558 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-08-22 09:58:38.566 +08:00 [DBG] Execution loop Worker:2df7cbf9 has started in 106.7758 ms +2021-08-22 09:58:38.568 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-08-22 09:58:38.570 +08:00 [DBG] Execution loop Worker:93bba6fc has started in 110.4946 ms +2021-08-22 09:58:38.573 +08:00 [DBG] Execution loop DelayedJobScheduler:8c4a3849 has started in 6.3707 ms +2021-08-22 09:58:38.574 +08:00 [INF] Server szqh003802a:29144:78de4514 all the dispatchers started +2021-08-22 09:58:38.585 +08:00 [DBG] Execution loop RecurringJobScheduler:e21a7f82 has started in 14.9391 ms +2021-08-22 09:58:38.607 +08:00 [DBG] removed records count=40 +2021-08-22 09:58:39.081 +08:00 [INF] Initialized all ABP modules. +2021-08-22 09:58:39.155 +08:00 [INF] Now listening on: http://localhost:44315 +2021-08-22 09:58:39.155 +08:00 [INF] Application started. Press Ctrl+C to shut down. +2021-08-22 09:58:39.155 +08:00 [INF] Hosting environment: Development +2021-08-22 09:58:39.155 +08:00 [INF] Content root path: D:\abp\aspnet-core\services\src\CompanyName.ProjectName.HttpApi.Host +2021-08-22 09:58:39.579 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/ - - +2021-08-22 09:58:39.611 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-08-22 09:58:39.622 +08:00 [DBG] removed records count=0 +2021-08-22 09:58:39.622 +08:00 [DBG] Removing outdated records from table 'List'... +2021-08-22 09:58:39.623 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-08-22 09:58:39.637 +08:00 [DBG] removed records count=0 +2021-08-22 09:58:39.637 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-08-22 09:58:39.640 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-08-22 09:58:39.649 +08:00 [DBG] removed records count=0 +2021-08-22 09:58:39.649 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-08-22 09:58:39.652 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-08-22 09:58:39.667 +08:00 [DBG] removed records count=0 +2021-08-22 09:58:41.936 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-08-22 09:58:42.011 +08:00 [INF] Route matched with {action = "Index", controller = "Home", area = "", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult Index() on controller CompanyName.ProjectName.Controllers.HomeController (CompanyName.ProjectName.HttpApi.Host). +2021-08-22 09:58:42.047 +08:00 [INF] Executing RedirectResult, redirecting to /swagger. +2021-08-22 09:58:42.054 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host) in 38.8931ms +2021-08-22 09:58:42.054 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-08-22 09:58:42.074 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/ - - - 302 0 - 2496.2568ms +2021-08-22 09:58:42.089 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/index.html - - +2021-08-22 09:58:42.140 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/index.html - - - 200 - text/html;charset=utf-8 50.8614ms +2021-08-22 09:58:42.286 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - +2021-08-22 09:58:42.627 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 340.2286ms +2021-08-22 09:59:06.283 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/create - - +2021-08-22 09:59:06.289 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:59:06.294 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/create - - - 204 - - 11.2401ms +2021-08-22 09:59:06.296 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/create application/json 134 +2021-08-22 09:59:06.297 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:59:06.350 +08:00 [INF] Successfully validated the token. +2021-08-22 09:59:06.357 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:59:06.371 +08:00 [INF] Route matched with {action = "Create", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task CreateAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.CreateIdentityResourceInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:59:07.110 +08:00 [WRN] ---------- RemoteServiceErrorInfo ---------- +{ + "code": null, + "message": "123\u4E0D\u5B58\u5728", + "details": null, + "data": {}, + "validationErrors": null +} + +2021-08-22 09:59:07.111 +08:00 [WRN] 123不存在 +Volo.Abp.UserFriendlyException: 123不存在 + at CompanyName.ProjectName.IdentityServer.IdentityResourceManager.CreateAsync(String name, String displayName, String description, Boolean enabled, Boolean required, Boolean emphasize, Boolean showInDiscoveryDocument) in D:\abp\aspnet-core\services\src\CompanyName.ProjectName.Domain\IdentityServer\IdentityResourceManager.cs:line 60 + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.GlobalFeatures.GlobalFeatureInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.Auditing.AuditingInterceptor.ProceedByLoggingAsync(IAbpMethodInvocation invocation, IAuditingHelper auditingHelper, IAuditLogScope auditLogScope) + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.Validation.ValidationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at lambda_method1645(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) +2021-08-22 09:59:07.111 +08:00 [WRN] Code: +2021-08-22 09:59:07.111 +08:00 [WRN] Details: +2021-08-22 09:59:07.141 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2021-08-22 09:59:07.155 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.CreateAsync (CompanyName.ProjectName.HttpApi) in 783.8614ms +2021-08-22 09:59:07.156 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:59:07.486 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:59:07.486 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:59:07.490 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/create application/json 134 - 500 - application/json;+charset=utf-8 1193.9899ms +2021-08-22 09:59:08.491 +08:00 [DBG] Server szqh003802a:29144:78de4514 heartbeat successfully sent +2021-08-22 09:59:12.631 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 09:59:12.633 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:59:12.633 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 1.9904ms +2021-08-22 09:59:12.635 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 09:59:12.635 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:59:12.639 +08:00 [INF] Successfully validated the token. +2021-08-22 09:59:12.668 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:59:12.668 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:59:12.669 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 33.4879ms +2021-08-22 09:59:12.741 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-08-22 09:59:12.741 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:59:12.742 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.5909ms +2021-08-22 09:59:12.745 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 09:59:12.746 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:59:12.748 +08:00 [INF] Successfully validated the token. +2021-08-22 09:59:12.750 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:59:12.754 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:59:13.430 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 09:59:13.435 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 680.7034ms +2021-08-22 09:59:13.435 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:59:13.451 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:59:13.483 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:59:13.483 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:59:13.483 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 738.0114ms +2021-08-22 09:59:20.359 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/create - - +2021-08-22 09:59:20.359 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:59:20.359 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/create - - - 204 - - 0.5547ms +2021-08-22 09:59:20.361 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/create application/json 49 +2021-08-22 09:59:20.361 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:59:20.364 +08:00 [INF] Successfully validated the token. +2021-08-22 09:59:20.365 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:59:20.365 +08:00 [INF] Route matched with {action = "Create", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task CreateAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.CreateIdentityResourceInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:59:20.442 +08:00 [WRN] ---------- RemoteServiceErrorInfo ---------- +{ + "code": null, + "message": "123\u4E0D\u5B58\u5728", + "details": null, + "data": {}, + "validationErrors": null +} + +2021-08-22 09:59:20.442 +08:00 [WRN] 123不存在 +Volo.Abp.UserFriendlyException: 123不存在 + at CompanyName.ProjectName.IdentityServer.IdentityResourceManager.CreateAsync(String name, String displayName, String description, Boolean enabled, Boolean required, Boolean emphasize, Boolean showInDiscoveryDocument) in D:\abp\aspnet-core\services\src\CompanyName.ProjectName.Domain\IdentityServer\IdentityResourceManager.cs:line 60 + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.GlobalFeatures.GlobalFeatureInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.Auditing.AuditingInterceptor.ProceedByLoggingAsync(IAbpMethodInvocation invocation, IAuditingHelper auditingHelper, IAuditLogScope auditLogScope) + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.Validation.ValidationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at lambda_method1645(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) +2021-08-22 09:59:20.442 +08:00 [WRN] Code: +2021-08-22 09:59:20.442 +08:00 [WRN] Details: +2021-08-22 09:59:20.442 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2021-08-22 09:59:20.443 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.CreateAsync (CompanyName.ProjectName.HttpApi) in 77.0235ms +2021-08-22 09:59:20.443 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:59:20.547 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:59:20.547 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 09:59:20.547 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/create application/json 49 - 500 - application/json;+charset=utf-8 186.4259ms +2021-08-22 09:59:34.483 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/create - - +2021-08-22 09:59:34.483 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:59:34.483 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/create - - - 204 - - 0.4555ms +2021-08-22 09:59:34.485 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/create application/json 49 +2021-08-22 09:59:34.486 +08:00 [INF] CORS policy execution successful. +2021-08-22 09:59:34.488 +08:00 [INF] Successfully validated the token. +2021-08-22 09:59:34.489 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 09:59:34.489 +08:00 [INF] Route matched with {action = "Create", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task CreateAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.CreateIdentityResourceInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 09:59:44.937 +08:00 [DBG] Server szqh003802a:29144:78de4514 heartbeat successfully sent +2021-08-22 10:00:01.294 +08:00 [ERR] An error occurred using the connection to database 'CompanyNameProjectNameDB' on server 'localhost'. +2021-08-22 10:00:01.294 +08:00 [WRN] ---------- RemoteServiceErrorInfo ---------- +{ + "code": null, + "message": "123\u4E0D\u5B58\u5728", + "details": null, + "data": {}, + "validationErrors": null +} + +2021-08-22 10:00:01.294 +08:00 [WRN] 123不存在 +Volo.Abp.UserFriendlyException: 123不存在 + at CompanyName.ProjectName.IdentityServer.IdentityResourceManager.CreateAsync(String name, String displayName, String description, Boolean enabled, Boolean required, Boolean emphasize, Boolean showInDiscoveryDocument) in D:\abp\aspnet-core\services\src\CompanyName.ProjectName.Domain\IdentityServer\IdentityResourceManager.cs:line 60 + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.GlobalFeatures.GlobalFeatureInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.Auditing.AuditingInterceptor.ProceedByLoggingAsync(IAbpMethodInvocation invocation, IAuditingHelper auditingHelper, IAuditLogScope auditLogScope) + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.Validation.ValidationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at lambda_method1645(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) +2021-08-22 10:00:01.294 +08:00 [WRN] Code: +2021-08-22 10:00:01.294 +08:00 [WRN] Details: +2021-08-22 10:00:01.294 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2021-08-22 10:00:01.295 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.CreateAsync (CompanyName.ProjectName.HttpApi) in 26805.4443ms +2021-08-22 10:00:01.295 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:00:01.297 +08:00 [DBG] Execution Worker is in the Faulted state now due to an exception, execution will be retried no more than in 00:00:01 +MySqlConnector.MySqlException (0x80004005): Connect Timeout expired. + ---> MySqlConnector.MySqlException (0x80004005): Got timeout reading communication packets + at MySqlConnector.Core.ServerSession.ConnectAsync(ConnectionSettings cs, Int32 startTickCount, ILoadBalancer loadBalancer, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/ServerSession.cs:line 462 + at MySqlConnector.Core.ConnectionPool.GetSessionAsync(MySqlConnection connection, Int32 startTickCount, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/ConnectionPool.cs:line 110 + at MySqlConnector.Core.ConnectionPool.GetSessionAsync(MySqlConnection connection, Int32 startTickCount, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/ConnectionPool.cs:line 140 + at MySqlConnector.MySqlConnection.CreateSessionAsync(ConnectionPool pool, Int32 startTickCount, Nullable`1 ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlConnection.cs:line 846 + at MySqlConnector.MySqlConnection.CreateSessionAsync(ConnectionPool pool, Int32 startTickCount, Nullable`1 ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlConnection.cs:line 868 + at MySqlConnector.MySqlConnection.OpenAsync(Nullable`1 ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlConnection.cs:line 410 + at MySqlConnector.MySqlConnection.Open() in /_/src/MySqlConnector/MySqlConnection.cs:line 376 + at Hangfire.MySql.MySqlStorage.CreateAndOpenConnection() + at Hangfire.MySql.MySqlDistributedLock..ctor(MySqlStorage storage, String resource, TimeSpan timeout, MySqlStorageOptions storageOptions) + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-08-22 10:00:01.297 +08:00 [DBG] Execution loop Worker:ef12bb90 caught an exception and will be retried in 00:00:01 +MySqlConnector.MySqlException (0x80004005): Connect Timeout expired. + ---> MySqlConnector.MySqlException (0x80004005): Got timeout reading communication packets + at MySqlConnector.Core.ServerSession.ConnectAsync(ConnectionSettings cs, Int32 startTickCount, ILoadBalancer loadBalancer, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/ServerSession.cs:line 462 + at MySqlConnector.Core.ConnectionPool.GetSessionAsync(MySqlConnection connection, Int32 startTickCount, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/ConnectionPool.cs:line 110 + at MySqlConnector.Core.ConnectionPool.GetSessionAsync(MySqlConnection connection, Int32 startTickCount, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/ConnectionPool.cs:line 140 + at MySqlConnector.MySqlConnection.CreateSessionAsync(ConnectionPool pool, Int32 startTickCount, Nullable`1 ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlConnection.cs:line 846 + at MySqlConnector.MySqlConnection.CreateSessionAsync(ConnectionPool pool, Int32 startTickCount, Nullable`1 ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlConnection.cs:line 868 + at MySqlConnector.MySqlConnection.OpenAsync(Nullable`1 ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlConnection.cs:line 410 + at MySqlConnector.MySqlConnection.Open() in /_/src/MySqlConnector/MySqlConnection.cs:line 376 + at Hangfire.MySql.MySqlStorage.CreateAndOpenConnection() + at Hangfire.MySql.MySqlDistributedLock..ctor(MySqlStorage storage, String resource, TimeSpan timeout, MySqlStorageOptions storageOptions) + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-08-22 10:00:01.298 +08:00 [DBG] Execution loop Worker:ef12bb90 will be retried in 00:00:01... +2021-08-22 10:00:01.330 +08:00 [ERR] An exception occurred while iterating over the results of a query for context type 'Volo.Abp.BackgroundJobs.EntityFrameworkCore.BackgroundJobsDbContext'. +System.InvalidOperationException: An exception has been raised that is likely due to a transient failure. Consider enabling transient error resiliency by adding 'EnableRetryOnFailure()' to the 'UseMySql' call. + ---> MySqlConnector.MySqlException (0x80004005): Connect Timeout expired. + ---> MySqlConnector.MySqlException (0x80004005): Connect Timeout expired. + ---> System.ObjectDisposedException: Cannot access a disposed object. +Object name: 'System.Net.Sockets.Socket'. + at System.Net.Sockets.Socket.ThrowObjectDisposedException() + at System.Net.Sockets.Socket.ThrowIfDisposed() + at System.Net.Sockets.Socket.ConnectAsync(SocketAsyncEventArgs e, Boolean userSocket) + at System.Net.Sockets.Socket.ConnectAsync(SocketAsyncEventArgs e) + at System.Net.Sockets.Socket.AwaitableSocketAsyncEventArgs.ConnectAsync(Socket socket) + at System.Net.Sockets.Socket.ConnectAsync(EndPoint remoteEP, CancellationToken cancellationToken) + at System.Net.Sockets.Socket.ConnectAsync(EndPoint remoteEP) + at System.Net.Sockets.Socket.ConnectAsync(IPAddress address, Int32 port) + at System.Net.Sockets.TcpClient.ConnectAsync(IPAddress address, Int32 port) + at MySqlConnector.Core.ServerSession.OpenTcpSocketAsync(ConnectionSettings cs, ILoadBalancer loadBalancer, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/ServerSession.cs:line 913 + at MySqlConnector.Core.ServerSession.OpenTcpSocketAsync(ConnectionSettings cs, ILoadBalancer loadBalancer, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/ServerSession.cs:line 942 + at MySqlConnector.Core.ServerSession.ConnectAsync(ConnectionSettings cs, Int32 startTickCount, ILoadBalancer loadBalancer, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/ServerSession.cs:line 371 + at MySqlConnector.Core.ConnectionPool.GetSessionAsync(MySqlConnection connection, Int32 startTickCount, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/ConnectionPool.cs:line 110 + at MySqlConnector.Core.ConnectionPool.GetSessionAsync(MySqlConnection connection, Int32 startTickCount, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/ConnectionPool.cs:line 140 + at MySqlConnector.MySqlConnection.CreateSessionAsync(ConnectionPool pool, Int32 startTickCount, Nullable`1 ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlConnection.cs:line 846 + at MySqlConnector.MySqlConnection.CreateSessionAsync(ConnectionPool pool, Int32 startTickCount, Nullable`1 ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlConnection.cs:line 868 + at MySqlConnector.MySqlConnection.OpenAsync(Nullable`1 ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlConnection.cs:line 410 + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenInternalAsync(Boolean errorsExpected, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenInternalAsync(Boolean errorsExpected, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenAsync(CancellationToken cancellationToken, Boolean errorsExpected) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlRelationalConnection.OpenAsync(CancellationToken cancellationToken, Boolean errorsExpected) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.InitializeReaderAsync(DbContext _, Boolean result, CancellationToken cancellationToken) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + --- End of inner exception stack trace --- + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.MoveNextAsync() +System.InvalidOperationException: An exception has been raised that is likely due to a transient failure. Consider enabling transient error resiliency by adding 'EnableRetryOnFailure()' to the 'UseMySql' call. + ---> MySqlConnector.MySqlException (0x80004005): Connect Timeout expired. + ---> MySqlConnector.MySqlException (0x80004005): Connect Timeout expired. + ---> System.ObjectDisposedException: Cannot access a disposed object. +Object name: 'System.Net.Sockets.Socket'. + at System.Net.Sockets.Socket.ThrowObjectDisposedException() + at System.Net.Sockets.Socket.ThrowIfDisposed() + at System.Net.Sockets.Socket.ConnectAsync(SocketAsyncEventArgs e, Boolean userSocket) + at System.Net.Sockets.Socket.ConnectAsync(SocketAsyncEventArgs e) + at System.Net.Sockets.Socket.AwaitableSocketAsyncEventArgs.ConnectAsync(Socket socket) + at System.Net.Sockets.Socket.ConnectAsync(EndPoint remoteEP, CancellationToken cancellationToken) + at System.Net.Sockets.Socket.ConnectAsync(EndPoint remoteEP) + at System.Net.Sockets.Socket.ConnectAsync(IPAddress address, Int32 port) + at System.Net.Sockets.TcpClient.ConnectAsync(IPAddress address, Int32 port) + at MySqlConnector.Core.ServerSession.OpenTcpSocketAsync(ConnectionSettings cs, ILoadBalancer loadBalancer, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/ServerSession.cs:line 913 + at MySqlConnector.Core.ServerSession.OpenTcpSocketAsync(ConnectionSettings cs, ILoadBalancer loadBalancer, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/ServerSession.cs:line 942 + at MySqlConnector.Core.ServerSession.ConnectAsync(ConnectionSettings cs, Int32 startTickCount, ILoadBalancer loadBalancer, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/ServerSession.cs:line 371 + at MySqlConnector.Core.ConnectionPool.GetSessionAsync(MySqlConnection connection, Int32 startTickCount, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/ConnectionPool.cs:line 110 + at MySqlConnector.Core.ConnectionPool.GetSessionAsync(MySqlConnection connection, Int32 startTickCount, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/ConnectionPool.cs:line 140 + at MySqlConnector.MySqlConnection.CreateSessionAsync(ConnectionPool pool, Int32 startTickCount, Nullable`1 ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlConnection.cs:line 846 + at MySqlConnector.MySqlConnection.CreateSessionAsync(ConnectionPool pool, Int32 startTickCount, Nullable`1 ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlConnection.cs:line 868 + at MySqlConnector.MySqlConnection.OpenAsync(Nullable`1 ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlConnection.cs:line 410 + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenInternalAsync(Boolean errorsExpected, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenInternalAsync(Boolean errorsExpected, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenAsync(CancellationToken cancellationToken, Boolean errorsExpected) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlRelationalConnection.OpenAsync(CancellationToken cancellationToken, Boolean errorsExpected) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.InitializeReaderAsync(DbContext _, Boolean result, CancellationToken cancellationToken) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + --- End of inner exception stack trace --- + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.MoveNextAsync() + at Microsoft.EntityFrameworkCore.EntityFrameworkQueryableExtensions.ToListAsync[TSource](IQueryable`1 source, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.EntityFrameworkQueryableExtensions.ToListAsync[TSource](IQueryable`1 source, CancellationToken cancellationToken) + at Volo.Abp.BackgroundJobs.EntityFrameworkCore.EfCoreBackgroundJobRepository.GetWaitingListAsync(Int32 maxResultCount, CancellationToken cancellationToken) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Volo.Abp.BackgroundJobs.BackgroundJobStore.GetWaitingJobsAsync(Int32 maxResultCount) + at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext) + at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync() +2021-08-22 10:00:01.333 +08:00 [ERR] An exception has been raised that is likely due to a transient failure. Consider enabling transient error resiliency by adding 'EnableRetryOnFailure()' to the 'UseMySql' call. +System.InvalidOperationException: An exception has been raised that is likely due to a transient failure. Consider enabling transient error resiliency by adding 'EnableRetryOnFailure()' to the 'UseMySql' call. + ---> MySqlConnector.MySqlException (0x80004005): Connect Timeout expired. + ---> MySqlConnector.MySqlException (0x80004005): Connect Timeout expired. + ---> System.ObjectDisposedException: Cannot access a disposed object. +Object name: 'System.Net.Sockets.Socket'. + at System.Net.Sockets.Socket.ThrowObjectDisposedException() + at System.Net.Sockets.Socket.ThrowIfDisposed() + at System.Net.Sockets.Socket.ConnectAsync(SocketAsyncEventArgs e, Boolean userSocket) + at System.Net.Sockets.Socket.ConnectAsync(SocketAsyncEventArgs e) + at System.Net.Sockets.Socket.AwaitableSocketAsyncEventArgs.ConnectAsync(Socket socket) + at System.Net.Sockets.Socket.ConnectAsync(EndPoint remoteEP, CancellationToken cancellationToken) + at System.Net.Sockets.Socket.ConnectAsync(EndPoint remoteEP) + at System.Net.Sockets.Socket.ConnectAsync(IPAddress address, Int32 port) + at System.Net.Sockets.TcpClient.ConnectAsync(IPAddress address, Int32 port) + at MySqlConnector.Core.ServerSession.OpenTcpSocketAsync(ConnectionSettings cs, ILoadBalancer loadBalancer, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/ServerSession.cs:line 913 + at MySqlConnector.Core.ServerSession.OpenTcpSocketAsync(ConnectionSettings cs, ILoadBalancer loadBalancer, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/ServerSession.cs:line 942 + at MySqlConnector.Core.ServerSession.ConnectAsync(ConnectionSettings cs, Int32 startTickCount, ILoadBalancer loadBalancer, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/ServerSession.cs:line 371 + at MySqlConnector.Core.ConnectionPool.GetSessionAsync(MySqlConnection connection, Int32 startTickCount, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/ConnectionPool.cs:line 110 + at MySqlConnector.Core.ConnectionPool.GetSessionAsync(MySqlConnection connection, Int32 startTickCount, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/ConnectionPool.cs:line 140 + at MySqlConnector.MySqlConnection.CreateSessionAsync(ConnectionPool pool, Int32 startTickCount, Nullable`1 ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlConnection.cs:line 846 + at MySqlConnector.MySqlConnection.CreateSessionAsync(ConnectionPool pool, Int32 startTickCount, Nullable`1 ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlConnection.cs:line 868 + at MySqlConnector.MySqlConnection.OpenAsync(Nullable`1 ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlConnection.cs:line 410 + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenInternalAsync(Boolean errorsExpected, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenInternalAsync(Boolean errorsExpected, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenAsync(CancellationToken cancellationToken, Boolean errorsExpected) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlRelationalConnection.OpenAsync(CancellationToken cancellationToken, Boolean errorsExpected) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.InitializeReaderAsync(DbContext _, Boolean result, CancellationToken cancellationToken) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + --- End of inner exception stack trace --- + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.MoveNextAsync() + at Microsoft.EntityFrameworkCore.EntityFrameworkQueryableExtensions.ToListAsync[TSource](IQueryable`1 source, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.EntityFrameworkQueryableExtensions.ToListAsync[TSource](IQueryable`1 source, CancellationToken cancellationToken) + at Volo.Abp.BackgroundJobs.EntityFrameworkCore.EfCoreBackgroundJobRepository.GetWaitingListAsync(Int32 maxResultCount, CancellationToken cancellationToken) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Volo.Abp.BackgroundJobs.BackgroundJobStore.GetWaitingJobsAsync(Int32 maxResultCount) + at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext) + at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync() +2021-08-22 10:00:01.379 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:00:01.379 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:00:01.380 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/create application/json 49 - 500 - application/json;+charset=utf-8 26894.5877ms +2021-08-22 10:00:01.471 +08:00 [DBG] 2 recurring job(s) processed by scheduler. +2021-08-22 10:00:02.410 +08:00 [DBG] Execution Worker recovered from the Faulted state after 00:00:01.1133055 and is in the Running state now +2021-08-22 10:00:39.884 +08:00 [INF] Starting CompanyName.ProjectName.HttpApi.Host. +2021-08-22 10:00:44.267 +08:00 [INF] User profile is available. Using 'C:\Users\wangjun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. +2021-08-22 10:00:44.391 +08:00 [INF] Loaded ABP modules: +2021-08-22 10:00:44.391 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiHostModule +2021-08-22 10:00:44.391 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiModule +2021-08-22 10:00:44.391 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationContractsModule +2021-08-22 10:00:44.391 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainSharedModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainSharedModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Data.AbpDataModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainSharedModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule +2021-08-22 10:00:44.391 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationContractsModule +2021-08-22 10:00:44.391 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainSharedModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.UI.AbpUiModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule +2021-08-22 10:00:44.391 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementHttpApiModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Caching.StackExchangeRedis.AbpCachingStackExchangeRedisModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule +2021-08-22 10:00:44.391 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationModule +2021-08-22 10:00:44.391 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.PermissionManagement.IdentityServer.AbpPermissionManagementDomainIdentityServerModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule +2021-08-22 10:00:44.391 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule +2021-08-22 10:00:44.391 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainModule +2021-08-22 10:00:44.391 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainSharedModule +2021-08-22 10:00:44.391 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationModule +2021-08-22 10:00:44.391 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreDbMigrationsModule +2021-08-22 10:00:44.391 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.IdentityServer.EntityFrameworkCore.AbpIdentityServerEntityFrameworkCoreModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.MySQL.AbpEntityFrameworkCoreMySQLModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.BackgroundJobs.EntityFrameworkCore.AbpBackgroundJobsEntityFrameworkCoreModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule +2021-08-22 10:00:44.391 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.FreeSqlMySql.QueryManagementFreeSqlMySqlModule +2021-08-22 10:00:44.391 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.EntityFrameworkCore.DataDictionaryManagementEntityFrameworkCoreModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2021-08-22 10:00:44.391 +08:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule +2021-08-22 10:00:44.392 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule +2021-08-22 10:00:44.392 +08:00 [INF] - Volo.Abp.BackgroundJobs.Hangfire.AbpBackgroundJobsHangfireModule +2021-08-22 10:00:44.392 +08:00 [INF] - Volo.Abp.Hangfire.AbpHangfireModule +2021-08-22 10:00:44.482 +08:00 [DBG] Started background worker: Volo.Abp.BackgroundJobs.BackgroundJobWorker +2021-08-22 10:00:44.485 +08:00 [DBG] Started background worker: Volo.Abp.IdentityServer.Tokens.TokenCleanupBackgroundWorker +2021-08-22 10:00:44.633 +08:00 [INF] DB tables already exist. Exit install +2021-08-22 10:00:44.648 +08:00 [INF] Starting Hangfire Server using job storage: 'Server: localhost@CompanyNameProjectNameHangfireDB' +2021-08-22 10:00:44.648 +08:00 [INF] Using the following options for SQL Server job storage: +2021-08-22 10:00:44.648 +08:00 [INF] Queue poll interval: 00:00:15. +2021-08-22 10:00:44.648 +08:00 [INF] Using the following options for Hangfire Server: + Worker count: 20 + Listening queues: 'default' + Shutdown timeout: 00:00:15 + Schedule polling interval: 00:00:15 +2021-08-22 10:00:44.695 +08:00 [DBG] Execution loop BackgroundServerProcess:8206d4a4 has started in 6.2794 ms +2021-08-22 10:00:44.814 +08:00 [INF] Server szqh003802a:24092:01d0017e successfully announced in 111.2047 ms +2021-08-22 10:00:44.818 +08:00 [INF] Server szqh003802a:24092:01d0017e is starting the registered dispatchers: ServerWatchdog, ServerJobCancellationWatcher, ExpirationManager, CountersAggregator, Worker, DelayedJobScheduler, RecurringJobScheduler... +2021-08-22 10:00:44.818 +08:00 [DBG] Execution loop ServerHeartbeatProcess:ea388ddd has started in 3.4768 ms +2021-08-22 10:00:44.821 +08:00 [DBG] Execution loop ServerWatchdog:d49cf07e has started in 2.3136 ms +2021-08-22 10:00:44.822 +08:00 [DBG] Execution loop ServerJobCancellationWatcher:d1ea0464 has started in 3.6596 ms +2021-08-22 10:00:44.824 +08:00 [DBG] Execution loop ExpirationManager:3222116b has started in 2.9713 ms +2021-08-22 10:00:44.858 +08:00 [DBG] Execution loop CountersAggregator:ffc49c42 has started in 35.4298 ms +2021-08-22 10:00:44.858 +08:00 [DBG] Execution loop Worker:dff17741 has started in 33.6137 ms +2021-08-22 10:00:44.860 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-08-22 10:00:44.860 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-08-22 10:00:44.862 +08:00 [DBG] Execution loop Worker:272e6639 has started in 37.197 ms +2021-08-22 10:00:44.864 +08:00 [DBG] Execution loop Worker:02e909fc has started in 38.7191 ms +2021-08-22 10:00:44.865 +08:00 [DBG] Execution loop Worker:9ac8c97e has started in 40.8741 ms +2021-08-22 10:00:44.868 +08:00 [DBG] Execution loop Worker:722d12f9 has started in 43.2814 ms +2021-08-22 10:00:44.870 +08:00 [DBG] Execution loop Worker:4d3e24ec has started in 45.8204 ms +2021-08-22 10:00:44.873 +08:00 [DBG] Execution loop Worker:4a5be0ca has started in 48.6202 ms +2021-08-22 10:00:44.875 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-08-22 10:00:44.878 +08:00 [DBG] Execution loop Worker:364b6d35 has started in 53.145 ms +2021-08-22 10:00:44.880 +08:00 [DBG] Execution loop Worker:6114b04e has started in 55.9749 ms +2021-08-22 10:00:44.883 +08:00 [DBG] Execution loop Worker:36befef0 has started in 58.3566 ms +2021-08-22 10:00:44.887 +08:00 [DBG] Execution loop Worker:c263891b has started in 62.5357 ms +2021-08-22 10:00:44.895 +08:00 [DBG] Execution loop Worker:02b1b162 has started in 70.4854 ms +2021-08-22 10:00:44.897 +08:00 [DBG] Execution loop Worker:eb649605 has started in 72.8426 ms +2021-08-22 10:00:44.903 +08:00 [DBG] Execution loop Worker:8e46dc20 has started in 78.2886 ms +2021-08-22 10:00:44.906 +08:00 [DBG] Execution loop Worker:ea704b10 has started in 81.6555 ms +2021-08-22 10:00:44.911 +08:00 [DBG] Execution loop Worker:e4cbee45 has started in 85.7603 ms +2021-08-22 10:00:44.915 +08:00 [DBG] Execution loop Worker:4ed59fe7 has started in 89.9242 ms +2021-08-22 10:00:44.917 +08:00 [DBG] Execution loop Worker:c7e47e07 has started in 92.2231 ms +2021-08-22 10:00:44.927 +08:00 [DBG] Execution loop Worker:f21ae268 has started in 103.0715 ms +2021-08-22 10:00:44.933 +08:00 [DBG] Execution loop Worker:6b4af8a0 has started in 108.3604 ms +2021-08-22 10:00:44.933 +08:00 [DBG] removed records count=1 +2021-08-22 10:00:44.949 +08:00 [DBG] Execution loop DelayedJobScheduler:c6a145a8 has started in 16.2297 ms +2021-08-22 10:00:44.949 +08:00 [INF] Server szqh003802a:24092:01d0017e all the dispatchers started +2021-08-22 10:00:44.953 +08:00 [DBG] Execution loop RecurringJobScheduler:1b89cd5d has started in 14.1067 ms +2021-08-22 10:00:45.462 +08:00 [INF] Initialized all ABP modules. +2021-08-22 10:00:45.538 +08:00 [INF] Now listening on: http://localhost:44315 +2021-08-22 10:00:45.539 +08:00 [INF] Application started. Press Ctrl+C to shut down. +2021-08-22 10:00:45.539 +08:00 [INF] Hosting environment: Development +2021-08-22 10:00:45.539 +08:00 [INF] Content root path: D:\abp\aspnet-core\services\src\CompanyName.ProjectName.HttpApi.Host +2021-08-22 10:00:45.888 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/ - - +2021-08-22 10:00:45.945 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-08-22 10:00:45.956 +08:00 [DBG] removed records count=0 +2021-08-22 10:00:45.956 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-08-22 10:00:45.958 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-08-22 10:00:45.975 +08:00 [DBG] removed records count=2 +2021-08-22 10:00:47.014 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-08-22 10:00:47.024 +08:00 [DBG] removed records count=0 +2021-08-22 10:00:47.024 +08:00 [DBG] Removing outdated records from table 'List'... +2021-08-22 10:00:47.026 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-08-22 10:00:47.033 +08:00 [DBG] removed records count=0 +2021-08-22 10:00:47.033 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-08-22 10:00:47.034 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-08-22 10:00:47.043 +08:00 [DBG] removed records count=0 +2021-08-22 10:00:47.043 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-08-22 10:00:47.045 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-08-22 10:00:47.052 +08:00 [DBG] removed records count=0 +2021-08-22 10:00:47.475 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-08-22 10:00:47.546 +08:00 [INF] Route matched with {action = "Index", controller = "Home", area = "", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult Index() on controller CompanyName.ProjectName.Controllers.HomeController (CompanyName.ProjectName.HttpApi.Host). +2021-08-22 10:00:47.581 +08:00 [INF] Executing RedirectResult, redirecting to /swagger. +2021-08-22 10:00:47.588 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host) in 37.9614ms +2021-08-22 10:00:47.588 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-08-22 10:00:47.607 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/ - - - 302 0 - 1720.3518ms +2021-08-22 10:00:47.622 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/index.html - - +2021-08-22 10:00:47.681 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/index.html - - - 200 - text/html;charset=utf-8 58.3790ms +2021-08-22 10:00:47.834 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - +2021-08-22 10:00:48.196 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 361.5657ms +2021-08-22 10:00:53.156 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/create - - +2021-08-22 10:00:53.164 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:00:53.169 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/create - - - 204 - - 12.7862ms +2021-08-22 10:00:53.172 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/create application/json 49 +2021-08-22 10:00:53.174 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:00:53.230 +08:00 [INF] Successfully validated the token. +2021-08-22 10:00:53.236 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:00:53.251 +08:00 [INF] Route matched with {action = "Create", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task CreateAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.CreateIdentityResourceInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 10:00:59.276 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.CreateAsync (CompanyName.ProjectName.HttpApi) in 6024.6454ms +2021-08-22 10:00:59.276 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:00:59.386 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:00:59.386 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:00:59.557 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:00:59.557 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:00:59.560 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/create application/json 49 - 204 - - 6387.3704ms +2021-08-22 10:01:14.881 +08:00 [DBG] Server szqh003802a:24092:01d0017e heartbeat successfully sent +2021-08-22 10:01:16.385 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-08-22 10:01:16.385 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:01:16.385 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.4564ms +2021-08-22 10:01:16.387 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 10:01:16.387 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:01:16.390 +08:00 [INF] Successfully validated the token. +2021-08-22 10:01:16.391 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:01:16.394 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 10:01:16.917 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 10:01:16.931 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 536.4397ms +2021-08-22 10:01:16.931 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:01:16.936 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:01:16.968 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:01:16.968 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:01:16.969 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 581.7841ms +2021-08-22 10:01:19.835 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 10:01:19.835 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:01:19.837 +08:00 [INF] Successfully validated the token. +2021-08-22 10:01:19.838 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:01:19.839 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 10:01:19.884 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 10:01:19.884 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 45.0103ms +2021-08-22 10:01:19.884 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:01:19.889 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:01:19.930 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:01:19.930 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:01:19.930 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 95.6254ms +2021-08-22 10:01:27.063 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/create - - +2021-08-22 10:01:27.063 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:01:27.063 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/create - - - 204 - - 0.5022ms +2021-08-22 10:01:27.065 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/create application/json 133 +2021-08-22 10:01:27.065 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:01:27.067 +08:00 [INF] Successfully validated the token. +2021-08-22 10:01:27.068 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:01:27.069 +08:00 [INF] Route matched with {action = "Create", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task CreateAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.CreateIdentityResourceInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 10:01:27.094 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.CreateAsync (CompanyName.ProjectName.HttpApi) in 25.5753ms +2021-08-22 10:01:27.094 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:01:27.105 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:01:27.105 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:01:27.136 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:01:27.136 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:01:27.136 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/create application/json 133 - 204 - - 71.3847ms +2021-08-22 10:01:27.170 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-08-22 10:01:27.170 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:01:27.170 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.4426ms +2021-08-22 10:01:27.171 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 10:01:27.172 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:01:27.175 +08:00 [INF] Successfully validated the token. +2021-08-22 10:01:27.177 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:01:27.178 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 10:01:27.215 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 10:01:27.216 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 38.0814ms +2021-08-22 10:01:27.216 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:01:27.220 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:01:27.248 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:01:27.248 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:01:27.248 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 76.8165ms +2021-08-22 10:01:44.895 +08:00 [DBG] Server szqh003802a:24092:01d0017e heartbeat successfully sent +2021-08-22 10:01:47.044 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 10:01:47.047 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:01:47.047 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 2.9050ms +2021-08-22 10:01:47.049 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 10:01:47.049 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:01:47.052 +08:00 [INF] Successfully validated the token. +2021-08-22 10:01:47.084 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:01:47.084 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:01:47.084 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 34.9773ms +2021-08-22 10:01:47.199 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-08-22 10:01:47.199 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:01:47.199 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.7308ms +2021-08-22 10:01:47.202 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 10:01:47.202 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:01:47.205 +08:00 [INF] Successfully validated the token. +2021-08-22 10:01:47.208 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:01:47.208 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 10:01:47.247 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 10:01:47.248 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 40.1787ms +2021-08-22 10:01:47.248 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:01:47.256 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:01:47.287 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:01:47.287 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:01:47.287 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 85.6550ms +2021-08-22 10:01:48.660 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 10:01:48.660 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:01:48.660 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5246ms +2021-08-22 10:01:48.663 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 10:01:48.663 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:01:48.665 +08:00 [INF] Successfully validated the token. +2021-08-22 10:01:48.689 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:01:48.689 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:01:48.689 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 26.7179ms +2021-08-22 10:01:48.756 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 10:01:48.756 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:01:48.758 +08:00 [INF] Successfully validated the token. +2021-08-22 10:01:48.760 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:01:48.760 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 10:01:48.801 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 10:01:48.802 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 41.9984ms +2021-08-22 10:01:48.802 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:01:48.808 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:01:48.836 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:01:48.836 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:01:48.836 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 80.7133ms +2021-08-22 10:01:51.427 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 10:01:51.428 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:01:51.428 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5803ms +2021-08-22 10:01:51.430 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 10:01:51.430 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:01:51.433 +08:00 [INF] Successfully validated the token. +2021-08-22 10:01:51.461 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:01:51.461 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:01:51.461 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 31.3872ms +2021-08-22 10:01:51.529 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 10:01:51.529 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:01:51.532 +08:00 [INF] Successfully validated the token. +2021-08-22 10:01:51.534 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:01:51.534 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 10:01:51.698 +08:00 [ERR] Failed executing DbCommand (122ms) [Parameters=[@__ef_filter__p_0='?' (DbType = Boolean), @__p_1='?' (DbType = Int32), @__p_0='?' (DbType = Int32)], CommandType='"Text"', CommandTimeout='30'] +SELECT `t`.`Id`, `t`.`ConcurrencyStamp`, `t`.`CreationTime`, `t`.`CreatorId`, `t`.`DeleterId`, `t`.`DeletionTime`, `t`.`Description`, `t`.`DisplayName`, `t`.`Emphasize`, `t`.`Enabled`, `t`.`ExtraProperties`, `t`.`IsDeleted`, `t`.`LastModificationTime`, `t`.`LastModifierId`, `t`.`Name`, `t`.`Required`, `t`.`ShowInDiscoveryDocument` +FROM ( + SELECT `i`.`Id`, `i`.`ConcurrencyStamp`, `i`.`CreationTime`, `i`.`CreatorId`, `i`.`DeleterId`, `i`.`DeletionTime`, `i`.`Description`, `i`.`DisplayName`, `i`.`Emphasize`, `i`.`Enabled`, `i`.`ExtraProperties`, `i`.`IsDeleted`, `i`.`LastModificationTime`, `i`.`LastModifierId`, `i`.`Name`, `i`.`Required`, `i`.`ShowInDiscoveryDocument` + FROM `IdentityServerIdentityResources` AS `i` + WHERE @__ef_filter__p_0 OR NOT (`i`.`IsDeleted`) + ORDER BY `i`.`CreationTime` + LIMIT @__p_1 OFFSET @__p_0 +) AS `t` +ORDER BY `t`.`CreationTime`, `t`.`Id` +2021-08-22 10:01:51.858 +08:00 [ERR] An exception occurred while iterating over the results of a query for context type 'Volo.Abp.IdentityServer.EntityFrameworkCore.IdentityServerDbContext'. +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 19 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 310 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 304 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.InitializeReaderAsync(DbContext _, Boolean result, CancellationToken cancellationToken) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.MoveNextAsync() +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 19 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 310 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 304 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.InitializeReaderAsync(DbContext _, Boolean result, CancellationToken cancellationToken) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.MoveNextAsync() +2021-08-22 10:01:52.081 +08:00 [ERR] An error occurred using a transaction. +2021-08-22 10:01:52.124 +08:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +{ + "code": null, + "message": "\u5BF9\u4E0D\u8D77,\u5728\u5904\u7406\u4F60\u7684\u8BF7\u6C42\u671F\u95F4,\u4EA7\u751F\u4E86\u4E00\u4E2A\u670D\u52A1\u5668\u5185\u90E8\u9519\u8BEF!", + "details": null, + "data": {}, + "validationErrors": null +} + +2021-08-22 10:01:52.126 +08:00 [ERR] The operation was canceled. +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 19 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 310 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 304 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.InitializeReaderAsync(DbContext _, Boolean result, CancellationToken cancellationToken) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.MoveNextAsync() + at Microsoft.EntityFrameworkCore.EntityFrameworkQueryableExtensions.ToListAsync[TSource](IQueryable`1 source, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.EntityFrameworkQueryableExtensions.ToListAsync[TSource](IQueryable`1 source, CancellationToken cancellationToken) + at Volo.Abp.IdentityServer.IdentityResources.IdentityResourceRepository.GetListAsync(String sorting, Int32 skipCount, Int32 maxResultCount, String filter, Boolean includeDetails, CancellationToken cancellationToken) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at CompanyName.ProjectName.IdentityServers.Mappers.IdentityResources.IdentityResourceAppService.GetListAsync(PagingIdentityResourceListInput input) in D:\abp\aspnet-core\services\src\CompanyName.ProjectName.Application\IdentityServers\IdentityResources\IdentityResourceAppService.cs:line 29 + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.GlobalFeatures.GlobalFeatureInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Auditing.AuditingInterceptor.ProceedByLoggingAsync(IAbpMethodInvocation invocation, IAuditingHelper auditingHelper, IAuditLogScope auditLogScope) + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Validation.ValidationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at lambda_method2123(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) +2021-08-22 10:01:52.131 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2021-08-22 10:01:52.137 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 603.6475ms +2021-08-22 10:01:52.137 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:01:52.218 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:01:52.219 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:01:52.219 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 500 - application/json;+charset=utf-8 690.2990ms +2021-08-22 10:01:52.725 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 10:01:52.726 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:01:52.726 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.8837ms +2021-08-22 10:01:52.729 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 10:01:52.729 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:01:52.732 +08:00 [INF] Successfully validated the token. +2021-08-22 10:01:52.759 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:01:52.759 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:01:52.760 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 30.9240ms +2021-08-22 10:01:52.869 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-08-22 10:01:52.870 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:01:52.870 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.4533ms +2021-08-22 10:01:52.872 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 10:01:52.872 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:01:52.874 +08:00 [INF] Successfully validated the token. +2021-08-22 10:01:52.876 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:01:52.876 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 10:01:52.919 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 10:01:52.919 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 42.9609ms +2021-08-22 10:01:52.919 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:01:52.925 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:01:52.959 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:01:52.959 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:01:52.960 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 88.1724ms +2021-08-22 10:02:01.053 +08:00 [DBG] 763 recurring job(s) processed by scheduler. +2021-08-22 10:02:14.919 +08:00 [DBG] Server szqh003802a:24092:01d0017e heartbeat successfully sent +2021-08-22 10:02:26.880 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/create - - +2021-08-22 10:02:26.880 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:02:26.880 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/create - - - 204 - - 0.4434ms +2021-08-22 10:02:26.882 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/create application/json 136 +2021-08-22 10:02:26.882 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:02:26.884 +08:00 [INF] Successfully validated the token. +2021-08-22 10:02:26.885 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:02:26.885 +08:00 [INF] Route matched with {action = "Create", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task CreateAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.CreateIdentityResourceInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 10:02:26.910 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.CreateAsync (CompanyName.ProjectName.HttpApi) in 24.5986ms +2021-08-22 10:02:26.910 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:02:26.920 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:02:26.920 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:02:26.961 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:02:26.961 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:02:26.961 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/create application/json 136 - 204 - - 79.8656ms +2021-08-22 10:02:27.008 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-08-22 10:02:27.008 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:02:27.008 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.4950ms +2021-08-22 10:02:27.010 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 10:02:27.010 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:02:27.012 +08:00 [INF] Successfully validated the token. +2021-08-22 10:02:27.013 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:02:27.014 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 10:02:27.064 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 10:02:27.064 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 50.4381ms +2021-08-22 10:02:27.064 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:02:27.068 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:02:27.094 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:02:27.094 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:02:27.094 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 84.3012ms +2021-08-22 10:02:41.697 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 2 +2021-08-22 10:02:41.699 +08:00 [INF] CORS policy execution failed. +2021-08-22 10:02:41.699 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-08-22 10:02:41.703 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:02:41.703 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 10:02:41.741 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 10:02:41.741 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 38.5296ms +2021-08-22 10:02:41.741 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:02:41.745 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:02:41.785 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:02:41.785 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:02:41.785 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 2 - 200 - application/json;+charset=utf-8 87.8375ms +2021-08-22 10:02:44.977 +08:00 [DBG] Server szqh003802a:24092:01d0017e heartbeat successfully sent +2021-08-22 10:03:14.988 +08:00 [DBG] Server szqh003802a:24092:01d0017e heartbeat successfully sent +2021-08-22 10:03:22.695 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-08-22 10:03:22.695 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:03:22.695 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.4307ms +2021-08-22 10:03:22.697 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 10:03:22.697 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:03:22.700 +08:00 [INF] Successfully validated the token. +2021-08-22 10:03:22.701 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:03:22.702 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 10:03:22.741 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 10:03:22.742 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 40.2922ms +2021-08-22 10:03:22.742 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:03:22.747 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:03:22.774 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:03:22.774 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:03:22.774 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 77.2234ms +2021-08-22 10:03:23.365 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 10:03:23.365 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:03:23.367 +08:00 [INF] Successfully validated the token. +2021-08-22 10:03:23.368 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:03:23.368 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 10:03:23.405 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 10:03:23.406 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 37.5695ms +2021-08-22 10:03:23.406 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:03:23.410 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:03:23.439 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:03:23.439 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:03:23.440 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 75.0060ms +2021-08-22 10:03:23.545 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 10:03:23.545 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:03:23.547 +08:00 [INF] Successfully validated the token. +2021-08-22 10:03:23.548 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:03:23.549 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 10:03:23.586 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 10:03:23.586 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 37.9172ms +2021-08-22 10:03:23.587 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:03:23.591 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:03:23.620 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:03:23.620 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:03:23.621 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 75.8483ms +2021-08-22 10:03:23.730 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 10:03:23.730 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:03:23.732 +08:00 [INF] Successfully validated the token. +2021-08-22 10:03:23.733 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:03:23.734 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 10:03:23.773 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 10:03:23.774 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 39.7956ms +2021-08-22 10:03:23.774 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:03:23.778 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:03:23.807 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:03:23.807 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:03:23.807 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 77.2835ms +2021-08-22 10:03:23.916 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 10:03:23.916 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:03:23.918 +08:00 [INF] Successfully validated the token. +2021-08-22 10:03:23.919 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:03:23.920 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 10:03:23.956 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 10:03:23.957 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 37.3128ms +2021-08-22 10:03:23.957 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:03:23.962 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:03:23.990 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:03:23.990 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:03:23.990 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 74.8754ms +2021-08-22 10:03:24.095 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 10:03:24.096 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:03:24.098 +08:00 [INF] Successfully validated the token. +2021-08-22 10:03:24.099 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:03:24.099 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 10:03:24.134 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 10:03:24.134 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 35.2934ms +2021-08-22 10:03:24.135 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:03:24.139 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:03:24.169 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:03:24.169 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:03:24.169 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 74.0121ms +2021-08-22 10:03:24.265 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 10:03:24.265 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:03:24.268 +08:00 [INF] Successfully validated the token. +2021-08-22 10:03:24.269 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:03:24.269 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 10:03:24.305 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 10:03:24.306 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 36.6911ms +2021-08-22 10:03:24.306 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:03:24.310 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:03:24.338 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:03:24.338 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:03:24.338 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 73.1638ms +2021-08-22 10:03:24.435 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 10:03:24.435 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:03:24.438 +08:00 [INF] Successfully validated the token. +2021-08-22 10:03:24.439 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:03:24.439 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 10:03:24.476 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 10:03:24.477 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 37.8856ms +2021-08-22 10:03:24.477 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:03:24.482 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:03:24.512 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:03:24.512 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:03:24.512 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 77.0318ms +2021-08-22 10:03:24.608 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 10:03:24.608 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:03:24.610 +08:00 [INF] Successfully validated the token. +2021-08-22 10:03:24.612 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:03:24.612 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 10:03:24.648 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 10:03:24.648 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 36.2576ms +2021-08-22 10:03:24.648 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:03:24.652 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:03:24.680 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:03:24.680 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:03:24.680 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 72.8087ms +2021-08-22 10:03:31.563 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-08-22 10:03:31.564 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:03:31.564 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.6469ms +2021-08-22 10:03:31.566 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 +2021-08-22 10:03:31.566 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:03:31.569 +08:00 [INF] Successfully validated the token. +2021-08-22 10:03:31.570 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:03:31.572 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-08-22 10:03:31.851 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 10:03:31.855 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 282.7912ms +2021-08-22 10:03:31.855 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:03:31.864 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:03:31.902 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:03:31.902 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:03:31.903 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 29 - 200 - application/json;+charset=utf-8 336.8191ms +2021-08-22 10:03:33.526 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-08-22 10:03:33.526 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:03:33.527 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.9670ms +2021-08-22 10:03:33.528 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 +2021-08-22 10:03:33.529 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:03:33.531 +08:00 [INF] Successfully validated the token. +2021-08-22 10:03:33.533 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:03:33.536 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 10:03:33.868 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 10:03:33.874 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 337.4273ms +2021-08-22 10:03:33.874 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:03:33.886 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:03:33.916 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:03:33.916 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:03:33.917 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 29 - 200 - application/json;+charset=utf-8 388.4277ms +2021-08-22 10:03:34.056 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-08-22 10:03:34.057 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:03:34.057 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.6716ms +2021-08-22 10:03:34.059 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 +2021-08-22 10:03:34.061 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:03:34.063 +08:00 [INF] Successfully validated the token. +2021-08-22 10:03:34.064 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:03:34.067 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-08-22 10:03:34.370 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 10:03:34.383 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 316.5245ms +2021-08-22 10:03:34.383 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:03:34.405 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:03:34.441 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:03:34.441 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:03:34.441 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 29 - 200 - application/json;+charset=utf-8 382.7299ms +2021-08-22 10:03:44.995 +08:00 [DBG] Server szqh003802a:24092:01d0017e heartbeat successfully sent +2021-08-22 10:04:01.061 +08:00 [DBG] 818 recurring job(s) processed by scheduler. +2021-08-22 10:04:03.245 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 10:04:03.245 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:04:03.245 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4635ms +2021-08-22 10:04:03.247 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 10:04:03.248 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:04:03.251 +08:00 [INF] Successfully validated the token. +2021-08-22 10:04:03.278 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:03.278 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:03.278 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 30.8277ms +2021-08-22 10:04:03.850 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-08-22 10:04:03.850 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:04:03.850 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.4662ms +2021-08-22 10:04:03.852 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 10:04:03.852 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:04:03.855 +08:00 [INF] Successfully validated the token. +2021-08-22 10:04:03.857 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:04:03.857 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 10:04:03.895 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 10:04:03.895 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 38.2473ms +2021-08-22 10:04:03.895 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:04:03.900 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:03.929 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:03.929 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:03.930 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 77.4973ms +2021-08-22 10:04:09.775 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 10:04:09.775 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:04:09.775 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4813ms +2021-08-22 10:04:09.777 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 10:04:09.777 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:04:09.780 +08:00 [INF] Successfully validated the token. +2021-08-22 10:04:09.805 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:09.805 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:09.806 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 28.7098ms +2021-08-22 10:04:09.868 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-08-22 10:04:09.868 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:04:09.868 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.5491ms +2021-08-22 10:04:09.876 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 10:04:09.877 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:04:09.881 +08:00 [INF] Successfully validated the token. +2021-08-22 10:04:09.882 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:04:09.883 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 10:04:09.925 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 10:04:09.926 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 43.3637ms +2021-08-22 10:04:09.926 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:04:09.933 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:09.993 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:09.993 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:09.993 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 116.7719ms +2021-08-22 10:04:14.853 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 10:04:14.853 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:04:14.854 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.5406ms +2021-08-22 10:04:14.856 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 10:04:14.857 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:04:14.859 +08:00 [INF] Successfully validated the token. +2021-08-22 10:04:14.897 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:14.897 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:14.898 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 41.2819ms +2021-08-22 10:04:14.927 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-08-22 10:04:14.927 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:04:14.927 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.5389ms +2021-08-22 10:04:14.931 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 10:04:14.931 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:04:14.934 +08:00 [INF] Successfully validated the token. +2021-08-22 10:04:14.936 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:04:14.936 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 10:04:14.979 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 10:04:14.980 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 43.1829ms +2021-08-22 10:04:14.980 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:04:14.986 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:15.017 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:15.017 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:15.017 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 86.5229ms +2021-08-22 10:04:15.032 +08:00 [DBG] Server szqh003802a:24092:01d0017e heartbeat successfully sent +2021-08-22 10:04:20.425 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 10:04:20.425 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:04:20.425 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.6438ms +2021-08-22 10:04:20.427 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 10:04:20.428 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:04:20.430 +08:00 [INF] Successfully validated the token. +2021-08-22 10:04:20.457 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:20.457 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:20.458 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 30.4056ms +2021-08-22 10:04:20.854 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-08-22 10:04:20.854 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:04:20.855 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.4902ms +2021-08-22 10:04:20.856 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 10:04:20.856 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:04:20.859 +08:00 [INF] Successfully validated the token. +2021-08-22 10:04:20.860 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:04:20.860 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 10:04:20.897 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 10:04:20.897 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 36.8676ms +2021-08-22 10:04:20.897 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:04:20.901 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:20.930 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:20.930 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:20.931 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 74.3736ms +2021-08-22 10:04:25.362 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - +2021-08-22 10:04:25.363 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:04:25.363 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 - - - 204 - - 0.4519ms +2021-08-22 10:04:25.364 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 +2021-08-22 10:04:25.365 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:04:25.367 +08:00 [INF] Successfully validated the token. +2021-08-22 10:04:25.392 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:25.392 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:25.392 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/signalr/notification/negotiate?negotiateVersion=1 text/plain;charset=UTF-8 0 - 404 0 - 27.6548ms +2021-08-22 10:04:25.852 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 10:04:25.852 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:04:25.854 +08:00 [INF] Successfully validated the token. +2021-08-22 10:04:25.856 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:04:25.856 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 10:04:25.892 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 10:04:25.892 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 36.5534ms +2021-08-22 10:04:25.892 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:04:25.897 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:25.925 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:25.925 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:25.925 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 73.4582ms +2021-08-22 10:04:36.853 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-08-22 10:04:36.853 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:04:36.853 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.5053ms +2021-08-22 10:04:36.854 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 10:04:36.855 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:04:36.857 +08:00 [INF] Successfully validated the token. +2021-08-22 10:04:36.858 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:04:36.858 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 10:04:36.894 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 10:04:36.895 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 36.3562ms +2021-08-22 10:04:36.895 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:04:36.899 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:36.927 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:36.927 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:36.927 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 72.5075ms +2021-08-22 10:04:37.906 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 10:04:37.906 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:04:37.908 +08:00 [INF] Successfully validated the token. +2021-08-22 10:04:37.910 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:04:37.910 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 10:04:37.945 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 10:04:37.946 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 35.6084ms +2021-08-22 10:04:37.946 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:04:37.950 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:37.977 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:37.977 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:37.977 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 71.4752ms +2021-08-22 10:04:44.852 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-08-22 10:04:44.852 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:04:44.853 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.5712ms +2021-08-22 10:04:44.854 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 10:04:44.855 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:04:44.857 +08:00 [INF] Successfully validated the token. +2021-08-22 10:04:44.858 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:04:44.858 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 10:04:44.895 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 10:04:44.895 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 36.8815ms +2021-08-22 10:04:44.895 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:04:44.899 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:44.944 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:44.944 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:44.945 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 90.4257ms +2021-08-22 10:04:45.120 +08:00 [DBG] Server szqh003802a:24092:01d0017e heartbeat successfully sent +2021-08-22 10:04:51.436 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/delete - - +2021-08-22 10:04:51.437 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:04:51.437 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/delete - - - 204 - - 0.4416ms +2021-08-22 10:04:51.439 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/delete application/json 2 +2021-08-22 10:04:51.439 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:04:51.441 +08:00 [INF] Successfully validated the token. +2021-08-22 10:04:51.442 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.DeleteAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:04:51.445 +08:00 [INF] Route matched with {action = "Delete", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task DeleteAsync(CompanyName.ProjectName.Publics.Dtos.IdInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 10:04:51.495 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.DeleteAsync (CompanyName.ProjectName.HttpApi) in 50.2982ms +2021-08-22 10:04:51.495 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.DeleteAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:04:51.498 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:51.526 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:51.526 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:51.526 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/delete application/json 2 - 204 - - 87.4568ms +2021-08-22 10:04:51.570 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-08-22 10:04:51.571 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:04:51.571 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.5022ms +2021-08-22 10:04:51.572 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 10:04:51.572 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:04:51.575 +08:00 [INF] Successfully validated the token. +2021-08-22 10:04:51.576 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:04:51.576 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 10:04:51.612 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 10:04:51.612 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 36.2922ms +2021-08-22 10:04:51.612 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:04:51.617 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:51.644 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:51.644 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:51.645 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 72.4155ms +2021-08-22 10:04:53.215 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 +2021-08-22 10:04:53.216 +08:00 [INF] CORS policy execution successful. +2021-08-22 10:04:53.218 +08:00 [INF] Successfully validated the token. +2021-08-22 10:04:53.220 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:04:53.220 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-08-22 10:04:53.258 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-08-22 10:04:53.258 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 38.1046ms +2021-08-22 10:04:53.258 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-08-22 10:04:53.262 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:53.290 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:53.290 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-08-22 10:04:53.291 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 29 - 200 - application/json;+charset=utf-8 75.0609ms diff --git a/aspnet-core/services/src/CompanyName.ProjectName.HttpApi/Controllers/IdentityServers/ClientController.cs b/aspnet-core/services/src/CompanyName.ProjectName.HttpApi/Controllers/IdentityServers/ClientController.cs index b8c958d7..11da386f 100644 --- a/aspnet-core/services/src/CompanyName.ProjectName.HttpApi/Controllers/IdentityServers/ClientController.cs +++ b/aspnet-core/services/src/CompanyName.ProjectName.HttpApi/Controllers/IdentityServers/ClientController.cs @@ -94,5 +94,12 @@ namespace CompanyName.ProjectName.Controllers.IdentityServers { return _identityServerClientAppService.RemoveCorsAsync(input); } + + [HttpPost("enabled")] + [SwaggerOperation(summary: "禁用client", Tags = new[] {"Client"})] + public Task EnabledAsync(EnabledInput input) + { + return _identityServerClientAppService.EnabledAsync(input); + } } } \ No newline at end of file diff --git a/vue3/src/layouts/default/header/components/user-dropdown/index.vue b/vue3/src/layouts/default/header/components/user-dropdown/index.vue index 349bdc8c..3aceee56 100644 --- a/vue3/src/layouts/default/header/components/user-dropdown/index.vue +++ b/vue3/src/layouts/default/header/components/user-dropdown/index.vue @@ -18,7 +18,7 @@ - + diff --git a/vue3/src/views/identityServers/apiResources/CreateApiResource.vue b/vue3/src/views/identityServers/apiResources/CreateApiResource.vue new file mode 100644 index 00000000..3fd7c334 --- /dev/null +++ b/vue3/src/views/identityServers/apiResources/CreateApiResource.vue @@ -0,0 +1,61 @@ + + + + + diff --git a/vue3/src/views/identityServers/apiScopes/ApiScopes.ts b/vue3/src/views/identityServers/apiScopes/ApiScopes.ts index 7bed01cf..830393b4 100644 --- a/vue3/src/views/identityServers/apiScopes/ApiScopes.ts +++ b/vue3/src/views/identityServers/apiScopes/ApiScopes.ts @@ -1,6 +1,6 @@ import { FormSchema } from '/@/components/Table'; import { BasicColumn } from '/@/components/Table'; -import { ClientServiceProxy, PagingClientListInput } from '/@/services/ServiceProxies'; +import { ApiScopeServiceProxy, PagingApiScopeListInput, IdInput } from '/@/services/ServiceProxies'; export const searchFormSchema: FormSchema[] = [ { @@ -13,12 +13,12 @@ export const searchFormSchema: FormSchema[] = [ export const tableColumns: BasicColumn[] = [ { - title: 'ClientId', - dataIndex: 'clientId', + title: 'name', + dataIndex: 'name', }, { - title: 'ClientName', - dataIndex: 'clientName', + title: 'displayName', + dataIndex: 'displayName', }, { title: '是否启用', @@ -26,16 +26,135 @@ export const tableColumns: BasicColumn[] = [ slots: { customRender: 'enabled' }, }, { - title: 'AccessTokenLifetime', - dataIndex: 'accessTokenLifetime', + title: 'description', + dataIndex: 'description', }, { - title: 'AbsoluteRefreshTokenLifetime', - dataIndex: 'absoluteRefreshTokenLifetime', + title: 'required', + dataIndex: 'required', + slots: { customRender: 'required' }, }, { - title: 'Description', - dataIndex: 'description', + title: 'emphasize', + dataIndex: 'emphasize', + slots: { customRender: 'emphasize' }, + }, + { + title: 'showInDiscoveryDocument', + dataIndex: 'showInDiscoveryDocument', + slots: { customRender: 'showInDiscoveryDocument' }, + }, +]; + +export const createFormSchema: FormSchema[] = [ + { + field: 'name', + label: 'name', + component: 'Input', + required: true, + labelWidth: 200, + colProps: { span: 20 }, + }, + { + field: 'displayName', + label: 'displayName', + component: 'Input', + required: true, + labelWidth: 200, + colProps: { span: 20 }, + }, + { + field: 'enabled', + label: 'enabled', + component: 'Switch', + required: true, + labelWidth: 200, + colProps: { span: 20 }, + }, + { + field: 'description', + label: 'description', + component: 'Input', + labelWidth: 200, + colProps: { span: 20 }, + }, + { + field: 'required', + label: 'required', + component: 'Switch', + labelWidth: 200, + colProps: { span: 20 }, + }, + { + field: 'emphasize', + label: 'emphasize', + component: 'Switch', + labelWidth: 200, + colProps: { span: 20 }, + }, + { + field: 'showInDiscoveryDocument', + label: 'showInDiscoveryDocument', + labelWidth: 200, + component: 'Switch', + colProps: { span: 20 }, + }, +]; +export const editFormSchema: FormSchema[] = [ + { + field: 'name', + label: 'name', + component: 'Input', + required: true, + labelWidth: 200, + colProps: { span: 20 }, + componentProps: { + disabled: true, + }, + }, + { + field: 'displayName', + label: 'displayName', + component: 'Input', + required: true, + labelWidth: 200, + colProps: { span: 20 }, + }, + { + field: 'enabled', + label: 'enabled', + component: 'Switch', + required: true, + labelWidth: 200, + colProps: { span: 20 }, + }, + { + field: 'description', + label: 'description', + component: 'Input', + labelWidth: 200, + colProps: { span: 20 }, + }, + { + field: 'required', + label: 'required', + component: 'Switch', + labelWidth: 200, + colProps: { span: 20 }, + }, + { + field: 'emphasize', + label: 'emphasize', + component: 'Switch', + labelWidth: 200, + colProps: { span: 20 }, + }, + { + field: 'showInDiscoveryDocument', + label: 'showInDiscoveryDocument', + labelWidth: 200, + component: 'Switch', + colProps: { span: 20 }, }, ]; /** @@ -43,7 +162,39 @@ export const tableColumns: BasicColumn[] = [ * @param params * @returns */ -export async function getTableListAsync(params: PagingClientListInput) { - const _clientServiceProxy = new ClientServiceProxy(); - return _clientServiceProxy.page(params); +export async function getTableListAsync(params: PagingApiScopeListInput) { + const _apiScopeServiceProxy = new ApiScopeServiceProxy(); + return _apiScopeServiceProxy.page(params); +} + +export async function createApiScopeAsync({ request, changeOkLoading, validate, closeModal }) { + changeOkLoading(true); + await validate(); + const _apiScopeServiceProxy = new ApiScopeServiceProxy(); + await _apiScopeServiceProxy.create(request); + changeOkLoading(false); + closeModal(); +} +/** + * 删除 + * @param param0 + */ +export async function deleteApiScopeAsync({ id, reload }) { + const _apiScopeServiceProxy = new ApiScopeServiceProxy(); + const request = new IdInput(); + request.id = id; + await _apiScopeServiceProxy.delete(request); + reload(); +} +/** + * 删除 + * @param param0 + */ +export async function editApiScopeAsync({ request, changeOkLoading, validate, closeModal }) { + await validate(); + changeOkLoading(true); + const _apiScopeServiceProxy = new ApiScopeServiceProxy(); + await _apiScopeServiceProxy.update(request); + changeOkLoading(false); + closeModal(); } diff --git a/vue3/src/views/identityServers/apiScopes/ApiScopes.vue b/vue3/src/views/identityServers/apiScopes/ApiScopes.vue index 70ae37a5..2668aeec 100644 --- a/vue3/src/views/identityServers/apiScopes/ApiScopes.vue +++ b/vue3/src/views/identityServers/apiScopes/ApiScopes.vue @@ -1,32 +1,70 @@ + + diff --git a/vue3/src/views/identityServers/apiScopes/EditApiScope.vue b/vue3/src/views/identityServers/apiScopes/EditApiScope.vue new file mode 100644 index 00000000..96df85e4 --- /dev/null +++ b/vue3/src/views/identityServers/apiScopes/EditApiScope.vue @@ -0,0 +1,72 @@ + + + + + diff --git a/vue3/src/views/identityServers/clients/Clients.ts b/vue3/src/views/identityServers/clients/Clients.ts new file mode 100644 index 00000000..e1ed796a --- /dev/null +++ b/vue3/src/views/identityServers/clients/Clients.ts @@ -0,0 +1,326 @@ +import { FormSchema } from '/@/components/Table'; +import { BasicColumn } from '/@/components/Table'; +import { ClientServiceProxy, EnabledInput, IdInput, PagingClientListInput } from '/@/services/ServiceProxies'; + +export const searchFormSchema: FormSchema[] = [ + { + field: 'filter', + label: '关键字', + component: 'Input', + colProps: { span: 8 }, + }, +]; + +export const tableColumns: BasicColumn[] = [ + { + title: 'ClientId', + dataIndex: 'clientId', + }, + { + title: 'ClientName', + dataIndex: 'clientName', + }, + { + title: '是否启用', + dataIndex: 'enabled', + slots: { customRender: 'enabled' }, + }, + { + title: 'AccessTokenLifetime', + dataIndex: 'accessTokenLifetime', + }, + { + title: 'AbsoluteRefreshTokenLifetime', + dataIndex: 'absoluteRefreshTokenLifetime', + }, + { + title: 'Description', + dataIndex: 'description', + }, +]; + +export const createFormSchema: FormSchema[] = [ + { + field: 'clientId', + label: 'ClientId', + component: 'Input', + required: true, + colProps: { span: 20 }, + }, + { + field: 'clientName', + label: 'ClientName', + component: 'Input', + required: true, + colProps: { span: 20 }, + }, + { + field: 'description', + label: 'Description', + component: 'Input', + colProps: { span: 20 }, + }, +]; + +export const editBasicDetailSchema: FormSchema[] = [ + { + field: 'clientId', + label: 'ClientId', + component: 'Input', + required: true, + labelWidth: 200, + componentProps: { + disabled: true, + }, + colProps: { span: 20 }, + }, + { + field: 'clientName', + label: 'ClientName', + component: 'Input', + labelWidth: 200, + required: true, + colProps: { span: 20 }, + }, + { + field: 'description', + label: 'Description', + component: 'Input', + labelWidth: 200, + colProps: { span: 20 }, + }, + { + field: 'clientUri', + label: 'ClientUri', + component: 'Input', + labelWidth: 200, + colProps: { span: 20 }, + }, + { + field: 'logoUri', + label: 'LogoUri', + component: 'Input', + labelWidth: 200, + colProps: { span: 20 }, + }, + { + field: 'frontChannelLogoutUri', + label: 'FrontChannelLogoutUri', + component: 'Input', + labelWidth: 200, + colProps: { span: 20 }, + }, + { + field: 'backChannelLogoutUri', + label: 'BackChannelLogoutUri', + component: 'Input', + labelWidth: 200, + colProps: { span: 20 }, + }, +]; + +export const editBasicOptionSchema: FormSchema[] = [ + { + field: 'enabled', + label: 'enabled', + labelWidth: 250, + component: 'Switch', + colProps: { span: 10 }, + }, + { + field: 'requireClientSecret', + label: 'requireClientSecret', + component: 'Switch', + labelWidth: 250, + colProps: { span: 10 }, + }, + { + field: 'requireConsent', + label: 'requireConsent', + component: 'Switch', + labelWidth: 250, + colProps: { span: 10 }, + }, + { + field: 'allowRememberConsent', + label: 'allowRememberConsent', + component: 'Switch', + labelWidth: 250, + colProps: { span: 10 }, + }, + + { + field: 'requirePkce', + label: 'requirePkce', + labelWidth: 250, + component: 'Switch', + colProps: { span: 10 }, + }, + { + field: 'allowOfflineAccess', + label: 'allowOfflineAccess', + component: 'Switch', + labelWidth: 250, + colProps: { span: 10 }, + }, + { + field: 'enableLocalLogin', + label: 'enableLocalLogin', + component: 'Switch', + labelWidth: 250, + colProps: { span: 10 }, + }, + { + field: 'includeJwtId', + label: 'includeJwtId', + component: 'Switch', + labelWidth: 250, + colProps: { span: 10 }, + }, + { + field: 'allowAccessTokensViaBrowser', + label: 'allowAccessTokensViaBrowser', + component: 'Switch', + labelWidth: 250, + colProps: { span: 10 }, + }, + { + field: 'alwaysIncludeUserClaimsInIdToken', + label: 'alwaysIncludeUserClaimsInIdToken', + component: 'Switch', + labelWidth: 250, + colProps: { span: 10 }, + }, + + { + field: 'frontChannelLogoutSessionRequired', + label: 'frontChannelLogoutSessionRequired', + component: 'Switch', + labelWidth: 250, + colProps: { span: 10 }, + }, + { + field: 'backChannelLogoutSessionRequired', + label: 'backChannelLogoutSessionRequired', + component: 'Switch', + labelWidth: 250, + colProps: { span: 10 }, + }, +]; + +export const editBasicTokenSchema: FormSchema[] = [ + { + field: 'accessTokenLifetime', + label: 'accessTokenLifetime', + labelWidth: 200, + component: 'Input', + }, + { + field: 'authorizationCodeLifetime', + label: 'authorizationCodeLifetime', + labelWidth: 200, + component: 'Input', + }, + { + field: 'absoluteRefreshTokenLifetime', + label: 'absoluteRefreshTokenLifetime', + labelWidth: 200, + component: 'Input', + }, + { + field: 'slidingRefreshTokenLifetime', + label: 'slidingRefreshTokenLifetime', + labelWidth: 200, + component: 'Input', + }, + { + field: 'refreshTokenExpiration', + label: 'refreshTokenExpiration', + labelWidth: 200, + component: 'Input', + }, + { + field: 'deviceCodeLifetime', + label: 'deviceCodeLifetime', + labelWidth: 200, + component: 'Input', + }, +]; +export const editBasicSecretSchema: FormSchema[] = [ + { + field: 'secretType', + component: 'Select', + label: 'Secret', + labelWidth: 100, + colProps: { + span: 15, + }, + componentProps: { + options: [ + { + label: 'SharedSecret', + value: 'SharedSecret', + key: '1', + }, + { + label: 'X509Thumbprint', + value: 'X509Thumbprint', + key: '2', + }, + ], + }, + }, + { + field: 'secret', + label: 'secret', + labelWidth: 100, + component: 'InputPassword', + }, +]; +/** + * 分页列表 + * @param params + * @returns + */ +export async function getTableListAsync(params: PagingClientListInput) { + const _clientServiceProxy = new ClientServiceProxy(); + return _clientServiceProxy.page(params); +} + +/** + * 创建client + * @param params + * @returns + */ +export async function createClientAsync({ request, changeOkLoading, validate, closeModal }) { + changeOkLoading(true); + await validate(); + const _clientServiceProxy = new ClientServiceProxy(); + await _clientServiceProxy.create(request); + changeOkLoading(false); + closeModal(); +} + +/** + * 删除 + * @param param0 + */ +export async function deleteClientAsync({ id, reload }) { + const _clientServiceProxy = new ClientServiceProxy(); + const request = new IdInput(); + request.id = id; + await _clientServiceProxy.delete(request); + reload(); +} +/** + * 删除 + * @param param0 + */ +export async function enabledClientAsync({ clientId, enabled, reload }) { + const _clientServiceProxy = new ClientServiceProxy(); + const request = new EnabledInput(); + request.clientId = clientId; + request.enabled = enabled; + await _clientServiceProxy.enabled(request); + reload(); +} diff --git a/vue3/src/views/identityServers/clients/Clients.vue b/vue3/src/views/identityServers/clients/Clients.vue new file mode 100644 index 00000000..c1ec2ee7 --- /dev/null +++ b/vue3/src/views/identityServers/clients/Clients.vue @@ -0,0 +1,116 @@ + + + + + diff --git a/vue3/src/views/identityServers/clients/CreateClient.vue b/vue3/src/views/identityServers/clients/CreateClient.vue new file mode 100644 index 00000000..53c59a53 --- /dev/null +++ b/vue3/src/views/identityServers/clients/CreateClient.vue @@ -0,0 +1,61 @@ + + + + + diff --git a/vue3/src/views/identityServers/clients/EditClientBasic.vue b/vue3/src/views/identityServers/clients/EditClientBasic.vue new file mode 100644 index 00000000..013873a6 --- /dev/null +++ b/vue3/src/views/identityServers/clients/EditClientBasic.vue @@ -0,0 +1,156 @@ + + + + diff --git a/vue3/src/views/identityServers/identityResources/CreateIdentityResource.vue b/vue3/src/views/identityServers/identityResources/CreateIdentityResource.vue new file mode 100644 index 00000000..63203349 --- /dev/null +++ b/vue3/src/views/identityServers/identityResources/CreateIdentityResource.vue @@ -0,0 +1,60 @@ + + + + + diff --git a/vue3/src/views/identityServers/identityResources/EditIdentityResources.vue b/vue3/src/views/identityServers/identityResources/EditIdentityResources.vue new file mode 100644 index 00000000..d4d68450 --- /dev/null +++ b/vue3/src/views/identityServers/identityResources/EditIdentityResources.vue @@ -0,0 +1,13 @@ + + + + + diff --git a/vue3/src/views/identityServers/identityResources/IdentityResources.ts b/vue3/src/views/identityServers/identityResources/IdentityResources.ts index 7bed01cf..328715b1 100644 --- a/vue3/src/views/identityServers/identityResources/IdentityResources.ts +++ b/vue3/src/views/identityServers/identityResources/IdentityResources.ts @@ -1,6 +1,6 @@ import { FormSchema } from '/@/components/Table'; import { BasicColumn } from '/@/components/Table'; -import { ClientServiceProxy, PagingClientListInput } from '/@/services/ServiceProxies'; +import { IdentityResourceServiceProxy, PagingIdentityResourceListInput, IdInput } from '/@/services/ServiceProxies'; export const searchFormSchema: FormSchema[] = [ { @@ -13,12 +13,12 @@ export const searchFormSchema: FormSchema[] = [ export const tableColumns: BasicColumn[] = [ { - title: 'ClientId', - dataIndex: 'clientId', + title: 'name', + dataIndex: 'name', }, { - title: 'ClientName', - dataIndex: 'clientName', + title: 'displayName', + dataIndex: 'displayName', }, { title: '是否启用', @@ -26,16 +26,132 @@ export const tableColumns: BasicColumn[] = [ slots: { customRender: 'enabled' }, }, { - title: 'AccessTokenLifetime', - dataIndex: 'accessTokenLifetime', + title: 'description', + dataIndex: 'description', }, { - title: 'AbsoluteRefreshTokenLifetime', - dataIndex: 'absoluteRefreshTokenLifetime', + title: 'required', + dataIndex: 'required', + slots: { customRender: 'required' }, }, { - title: 'Description', - dataIndex: 'description', + title: 'emphasize', + dataIndex: 'emphasize', + slots: { customRender: 'emphasize' }, + }, + { + title: 'showInDiscoveryDocument', + dataIndex: 'showInDiscoveryDocument', + slots: { customRender: 'showInDiscoveryDocument' }, + }, +]; +export const createFormSchema: FormSchema[] = [ + { + field: 'name', + label: 'name', + component: 'Input', + required: true, + labelWidth: 200, + colProps: { span: 20 }, + }, + { + field: 'displayName', + label: 'displayName', + component: 'Input', + required: true, + labelWidth: 200, + colProps: { span: 20 }, + }, + { + field: 'enabled', + label: 'enabled', + component: 'Switch', + labelWidth: 200, + colProps: { span: 20 }, + }, + { + field: 'description', + label: 'description', + component: 'Input', + labelWidth: 200, + colProps: { span: 20 }, + }, + { + field: 'required', + label: 'required', + component: 'Switch', + labelWidth: 200, + colProps: { span: 20 }, + }, + { + field: 'emphasize', + label: 'emphasize', + component: 'Switch', + labelWidth: 200, + colProps: { span: 20 }, + }, + { + field: 'showInDiscoveryDocument', + label: 'showInDiscoveryDocument', + labelWidth: 200, + component: 'Switch', + colProps: { span: 20 }, + }, +]; +export const editFormSchema: FormSchema[] = [ + { + field: 'name', + label: 'name', + component: 'Input', + required: true, + labelWidth: 200, + colProps: { span: 20 }, + componentProps: { + disabled: true, + }, + }, + { + field: 'displayName', + label: 'displayName', + component: 'Input', + required: true, + labelWidth: 200, + colProps: { span: 20 }, + }, + { + field: 'enabled', + label: 'enabled', + component: 'Switch', + labelWidth: 200, + colProps: { span: 20 }, + }, + { + field: 'description', + label: 'description', + component: 'Input', + labelWidth: 200, + colProps: { span: 20 }, + }, + { + field: 'required', + label: 'required', + component: 'Switch', + labelWidth: 200, + colProps: { span: 20 }, + }, + { + field: 'emphasize', + label: 'emphasize', + component: 'Switch', + labelWidth: 200, + colProps: { span: 20 }, + }, + { + field: 'showInDiscoveryDocument', + label: 'showInDiscoveryDocument', + labelWidth: 200, + component: 'Switch', + colProps: { span: 20 }, }, ]; /** @@ -43,7 +159,26 @@ export const tableColumns: BasicColumn[] = [ * @param params * @returns */ -export async function getTableListAsync(params: PagingClientListInput) { - const _clientServiceProxy = new ClientServiceProxy(); - return _clientServiceProxy.page(params); +export async function getTableListAsync(params: PagingIdentityResourceListInput) { + const _identityResourceServiceProxy = new IdentityResourceServiceProxy(); + return _identityResourceServiceProxy.page(params); +} +export async function createIdentityResourcesAsync({ request, changeOkLoading, validate, closeModal }) { + changeOkLoading(true); + await validate(); + const _identityResourceServiceProxy = new IdentityResourceServiceProxy(); + await _identityResourceServiceProxy.create(request); + changeOkLoading(false); + closeModal(); +} +/** + * 删除 + * @param param0 + */ +export async function deleteIdentityResourcesAsync({ id, reload }) { + const _identityResourceServiceProxy = new IdentityResourceServiceProxy(); + const request = new IdInput(); + request.id = id; + await _identityResourceServiceProxy.delete(request); + reload(); } diff --git a/vue3/src/views/identityServers/identityResources/IdentityResources.vue b/vue3/src/views/identityServers/identityResources/IdentityResources.vue index d439f92a..8a7864a2 100644 --- a/vue3/src/views/identityServers/identityResources/IdentityResources.vue +++ b/vue3/src/views/identityServers/identityResources/IdentityResources.vue @@ -1,32 +1,70 @@