ExpressAI / DataLab

The unified platform for data-related resources.
https://expressai.github.io/DataLab/
Apache License 2.0
131 stars 27 forks source link

Prefer logging.info over print #329

Closed tetsuok closed 2 years ago

tetsuok commented 2 years ago

This PR replaces print based logging with logging.info. Currently, some APIs use print function to notify some information to users. In general, this is not a suitable choice when the APIs in this module are integrated as a part of other third-party applications or modules. Authors of these applications or modules often want to turn logging on and off depending on the situation. For example, when debugging full logging is preferred to track down complex issues while non-critical logging is completely discarded in production usage for saving disk space or performance.