Change the warning level for the unexpected uri scheme detected log
event when determining caps based off of the uri. The log gets triggered
by `rados:mon-config-key:*` type uris and those are common now so
the warning is just noise.
Signed-off-by: John Mulligan <jmulligan@redhat.com>
def _pool_caps_from_uri(self, uri: str) -> List[str]:
if not uri.startswith('rados://'):
- logger.warning("ignoring unexpected uri scheme: %r", uri)
+ logger.debug("ignoring unexpected uri scheme: %r", uri)
return []
part = uri[8:].rstrip('/')
if part.count('/') > 1: