hi
I will check your project.
Thanks.
hi
Could you share a simple project that reproduces the issue?
I will download and check it.
liming.ma@volosoft.com
Thanks.
ok
hi
Can you check https://abp.io/support/questions/817/How-to-delete-current-license-login-session#answer-4cbc8f13-c7f3-84fa-7fc8-39fa2688df13
https://abp.io/support/questions/9640/ABP-LIC-ERROR---License-check-failed-for-%27VoloAbpAspNetCoreMvcUIThemeCommercial-v9210%27#answer-3a1b3ec8-a0d4-ebf7-e38a-1ae23251cc5d
Thanks
We need to confirm the application-configuration
request has a valid bearer token.
GET http://localhost:44357/api/abp/application-configuration
loggerConfiguration
.MinimumLevel.Debug()
.MinimumLevel.Override("Microsoft.EntityFrameworkCore", LogEventLevel.Warning)
.Enrich.FromLogContext()
.Enrich.WithProperty("Application", applicationName)
.If(context.Configuration.GetValue<bool>("ElasticSearch:IsLoggingEnabled"), c =>
c.WriteTo.Elasticsearch(
new ElasticsearchSinkOptions(new Uri(context.Configuration["ElasticSearch:Url"]!))
{
AutoRegisterTemplate = true,
AutoRegisterTemplateVersion = AutoRegisterTemplateVersion.ESv6,
IndexFormat = "PointLink-log-{0:yyyy.MM}"
})
)
.WriteTo.Async(c => c.File("Logs/logs.txt", rollingInterval: RollingInterval.Day))
.WriteTo.Async(c => c.Console())
.WriteTo.Async(c => c.AbpStudio(services));
What is your Program.cs file content?
hi
Pelase enable debug logs
var loggerConfiguration = new LoggerConfiguration()
.MinimumLevel.Debug()
.MinimumLevel.Override("Microsoft.EntityFrameworkCore", LogEventLevel.Warning)
.Enrich.FromLogContext()
.WriteTo.Async(c => c.File("Logs/logs.txt"))
hi
What is your ABP version?
Can you share the logs.txt
file?
Can you share some screenshots?
Thanks.
hi
Can you try setting IsJobExecutionEnabled
to true
in one app and disabling it in other apps?
Thanks.
https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.BackgroundJobs.Abstractions/Volo/Abp/BackgroundJobs/AbpBackgroundJobOptions.cs#L15
Please share the logs from the API website.
You can consider sharing a project to reproduce the issue. It could be related to the access token.