Current implementation of the --verbose flag in most of the ray pipeline is an ad-hoc implementation that is clunky and difficult to expand upon. The python built-in logging module offers a very natural interface for this use case. Therefore, all --verbose and --debug flags should be implemented using this module.
Current implementation of the
--verbose
flag in most of the ray pipeline is an ad-hoc implementation that is clunky and difficult to expand upon. The python built-inlogging
module offers a very natural interface for this use case. Therefore, all--verbose
and--debug
flags should be implemented using this module.