Hello,
I’m trying to change the log level to INFO or debug in ray init and it’s not working.
configure_logging=True,
logging_level=logging.DEBUG,
Actually the logging level for main notebook is changing after import ray.
Before import ray:
main DEBUG debug log message
main INFO info log message
main WARNING warning log message
main ERROR error log message
main CRITICAL critical log message
After import ray:
main ERROR error log message
main CRITICAL critical log message
What did changed? Few months ago used to work, also with nightly…
Sample workspace: ray_tune_hebo_example.ipynb
I need to test on nightly because I want to see how HEBO works.
Regards,