Have jam only show warnings and errors

When building Haiku itself or the apps, etc.with jam is there a way to only show warnings\errors on the screen instead of all of the other output?

1 Like

I think you can redirect stdout to elsewhere: jam -q … > /dev/null. Since the warnings and errors are sent to stderr, this should work?

1 Like

This appears to work great, thanks!