Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Logging enhancements #701

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

haim-cohen-moonactive
Copy link

The idea is not to set logging configuration in the code. As a library mljar should not set logging preferences, and let the application do it. In addition, verbose_print messages should go to logger so the application can get those messages if required.
Proposed changes:

  • Remove calls to basicConfig on automl.py and exceptions.py
  • Change verbose_print to use logger.

@pplonski
Copy link
Contributor

Thank you @haim-cohen-moonactive. I would like to keep some default logging configuration for the library. Do you have any proposal on how to do this?

@haim-cohen-moonactive
Copy link
Author

haim-cohen-moonactive commented Jan 31, 2024 via email

@pplonski
Copy link
Contributor

Thanks. I understand your point. Most of users are importing package in their script/notebook and just call constructor and fit(). I would leave default logging for them, and I prefer to make it configurable. The same with verbose_print() - it should print message to terminal by default and it should be configurable.

@DanielAvdar
Copy link
Contributor

Thanks. I understand your point. Most of users are importing package in their script/notebook and just call constructor and fit(). I would leave default logging for them, and I prefer to make it configurable. The same with verbose_print() - it should print message to terminal by default and it should be configurable.

There are users who like to productionize their work. Not adhering to logging standards might lead to problems with productionizing applications dependent on MLjar.

@pplonski
Copy link
Contributor

pplonski commented Feb 5, 2024

OK, so we need to update the code in that why to have:

  • default logging for users that just call AutoML to build models,
  • and configurable logging for users that integrate AutoML in their packages.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants