Entity Framework core by default logs all executed SQL queries to the ASP.NET Core logger (Microsoft.Extensions.Logging). The default log level is Informational, but it seems a bit chatty to me for informational logging. I would prefer it at Debug or even Trace level.
Is there any way to configure EFCore to log these SQL queries at Debug (or Trace) level, instead of Informational level?