Remove all logging information

I’m using ray.2.20.0. When running ray jobs, I’ve got many of the following messages. Is there a way to disable these messages completely.

  024-05-29 18:13:19,301  INFO streaming_executor.py:112 -- Starting execution of Dataset. Full logs are in /tmp/ray/session_2024-05-29_18-12-48_951997_15837/logs/ray-data

The following works:

  logger = logging.getLogger("ray.data")
  logger.setLevel(logging.CRITICAL)