Supressing "Info:" in XGBoost package?

Hi,
When training an XGBoost the xgboost.jl package provides information about the rmse value:

This is helpful when training first but when running in production I might not want my terminal to be filled with this, especially for many rounds, and especially if I need to look for other important println. Does anyone know of a way to not show these “[ Info: ]” lines?

Thanks!

That works.

bst = xgboost((X,y), verbosity=0, watchlist=(;))

Discussion | More Info