Getting cookie warnings when implementing a webhook

I was implementing the NEXMO wehbook call. This is a fairly simple GET call I am getting from their system, they just post some query params with values.
However in my logging (db) I get following:

Level	Message
Warning	Error trying to create System.Net.Cookie: $Path
Warning	Error trying to create System.Net.Cookie: $Version

Is there anything I can configure to avoid this log messages?

If you wanted to suppress the log messages it would need to be configured in the logger you’re using but you’d need to find the Type of logger that’s logging the message.

Ideally you’d find out what’s causing the invalid Cookie and prevent it from happening.