hi
Have you logged in to the CLI?
abp login-info
Only have one line log?
That's strange.
Hello, I could generate a CSV file with all errors detected by Application Insights and share it to you, does it work for you like that?
Please share the logs.
Thanks
hi
Can you share the Logs.txt
file?
liming.ma@volosoft.com
.WriteTo.Async(c => c.File("Logs/logs.txt"))
public class Program
{
public async static Task<int> Main(string[] args)
{
Log.Logger = new LoggerConfiguration()
#if DEBUG
.MinimumLevel.Debug()
#else
.MinimumLevel.Information()
#endif
.MinimumLevel.Override("Microsoft", LogEventLevel.Information)
.MinimumLevel.Override("Microsoft.EntityFrameworkCore", LogEventLevel.Warning)
.Enrich.FromLogContext()
.WriteTo.Async(c => c.File("Logs/logs.txt"))
.WriteTo.Async(c => c.Console())
.CreateLogger();
hi
After login to the app with host admin, with Insomnia copy the access token to request, and get data from the Url:
Can you check the request-response (api/abp/application-configuration
) in your angular app?
Check the request token
as well.
And share the logs of this request in your services.
Thanks.
hi
Now, after all this, I am able to get the permissions related only to Tenants, but I am getting this login icon even after user being logged in.
What are the current user claims of the authserver project?
And I also observed that when I check in the abp configuration response :
Please share access_token
of this request.
Please share all logs of this case.
Thanks.
hi
when I userFriendlyException is thrown the server is returning 500 error,
Are there any logs in Logs.txt
file?
If so, please share it.
Thanks.
hi
Can you try to upgrade studio and cli to latest and try again?
> abp get-source Volo.Abp.LeptonXTheme
[09:10:50 INF] You are running the second generation of the ABP CLI. If you're interested in the legacy CLI, see https://abp.io/new-cli
📌 ABP CLI 0.8.3 (Beta)
[09:10:51 INF] Downloading source code of Volo.Abp.LeptonXTheme (Latest)
[09:10:51 INF] Output folder: /Users/sourcecode
[09:11:03 INF] 'Volo.Abp.LeptonXTheme' has been successfully downloaded to '/Users/sourcecode'
hi
You can use
using (CultureHelper.Use("en-GB"))
{
//get localization texts
}
hi
Can you share a project or a template project to reproduce?
I will fix this if I can reproduce.
Thanks
hi
There is no user concept in PeriodicBackgroundWorker
, But you can use a fixed user-id/username in it.