How to suppress hail info output

Hello - Is there a way to mute the hail console output when calling functions such as .to_pandas() or .collect()? I was expecting there to be a verbose parameter for these functions to control that but there doesn’t appear to be any (at least that I could find). I just don’t want to see all the [Stage 3117:> (0 + 10) / 10] type text. If that does exist somewhere ignore this but I think it could be a nice quality of life addition, not necessary but nice.

Additionally, I’ve attempted to just suppress the stdout but that doesn’t appear to have an affect ( as described here). So even attempting a hacky solution doesn’t seem to work.

I think initializing Hail with quiet=True will work:

hl.init(quiet=True)
1 Like

It did work! thanks for the help