NurdaKz opened this issue 4 years ago · 2 comments
After this line in Program.cs, nothing is logged
CleanArchitecture.WebApi/WebApi/Program.cs
Line 54 in 4d89c2c
Had the same issue, you need to move this line inside try catch block in Program.cs
try { ///..... Other code await host.RunAsync(); }
Had the same issue, you need to move this line inside try catch block in Program.cs try { ///..... Other code await host.RunAsync(); }
thanks @alydemah this solved the issue