-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
use _console
for app header
#29662
Comments
I don't fully understand these statements. Could you please elaborate? |
Sure. It's basically this:
vs this:
|
Since |
Motivation
When running multiapps, a nice color indentation appears for outputs from the sub apps that looks like:
Some subapps have headers defined in
SomeApp::header() const
. The current implementation of the header call inMooseApp::setupOptions()
gets close by coloring the header and adding:
, but misses out on the subapp:Sometimes there are things in that header that are worth seeing for each sub app instance, so having
sub0:
output before the header would be nice.Even other times, it would be nice to suppress it all together.
Design
Change the header output to simply
Second, use command line options to provide a flag to suppress output altogether.
Impact
More consistant multiapps.
The text was updated successfully, but these errors were encountered: