Fix: ILogger Type Mismatch in AdapterWithErrorHandler CloudAdapter
When creating an AdapterWithErrorHandler class that inherits from CloudAdapter, you might encounter this compile error:
Argument 3: cannot convert from 'Microsoft.Extensions.Logging.ILogger<Microsoft.Agents.Hosting.AspNetCore.IAgentHttpAdapter>' to 'Microsoft.Extensions.Logging.ILogger<Microsoft.Agents.Hosting.AspNetCore.CloudAdapter>'
This happens because you're passing ILogger<IAgentHttpAdapter> to the CloudAdapter base constructor, but it expects ILogger<CloudAdapter>.
