0
luke created
[13:24:47 DBG] Waiting to acquire the distributed lock for saving external localizations...
[13:24:47 INF] Saving external localizations...
My application often hangs on "Saving external localizations.." line in startup and will not accept any http requests.
I can't find which module outputs these lines to the console/logs.
Have you got any idea what could be causing this?
1 Answer(s)
-
0
Hi, the related logs are written because of the ABP's External Localization System (https://github.com/abpframework/abp/pull/13845) and coming from the Language Management Module.
If it's not important for you, you can disable it by configuring the
AbpExternalLocalizationOptions
in your domain module:Configure<AbpExternalLocalizationOptions>(options => { options.SaveToExternalStore = false; //true by default });