I tested the plomber logging feature using notebooks for train/test some models by adding this to the pipeline.yaml file (papermill parameter)
papermill_params:
log_output: True
and called my ploomber notebook execution with this command:
ploomber build pipeline.yaml --log info --log-file experiment1.log
so far so good the log is printed to console and saved to file. If I open the notebook, the log is printed in every notebook cell as expected. Then I disabled the log removing the yaml entry and executing the pipeline this way:
ploomber build pipeline.yaml --log info
but now i am unable to disable log. All the messages are printed into every notebook cell making it nearly unusable when trying to see the cell output.