After upgrading my WebJobs to dotnet 7 everything is working pretty fine, but now it shows logs for connecting to Queues like this:
This is being shown everytime the job checks for new messages (5 sec). After this, it's impossible to check on the logs that I really need.
How can I hide these logs and see just the ones I really need?
Thanks in advance.

Initially even I got the same logs with all the Requests from
Azure.Corepackage.Program.csfile to add all the console logs.appsettings.jsonfile to ignore the logs fromAzure.Corepackage.I have taken references from this SOThread configuration.
With Configuration Logging level in
appsettings.jsonfile:appsettings.jsonfile:Program.csfileOR
With AddFilter option:
Can add a filter in
program.csfile itself.Output: