This gets logged every time cephadm tries to apply a
relevant OSD spec and ends up spamming the logs. There's no reason
we really need this to be at info rather than debug level,
so let's lower it.
Fixes: https://tracker.ceph.com/issues/61592
Signed-off-by: Adam King <adking@redhat.com>
(cherry picked from commit
20478025696b4ef39ca3e50c7cbfdb1250f85cfd)
limit = device_filter.limit or 0
if limit > 0 and (len_devices + self.existing_daemons >= limit):
- logger.info("Refuse to add {} due to limit policy of <{}>".format(
+ logger.debug("Refuse to add {} due to limit policy of <{}>".format(
disk_path, limit))
return True
return False