suppress log message

This commit is contained in:
Blake Blackshear 2023-05-31 08:57:33 -05:00
parent 7c1e04cf7b
commit 1e5ec9d570

View File

@ -62,6 +62,8 @@ def log_process(log_queue: Queue) -> None:
if stop_event.is_set():
break
continue
if record.msg.startswith("You are using a scalar distance function"):
continue
logger = logging.getLogger(record.name)
logger.handle(record)