Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
DESCRIPTION OF CHANGES:
DEBUG
to enable more in-depth debugging output from workflow scripts. Set default value ofDEBUG
inconfig_defaults.sh
to"FALSE"
.VERBOSE
is"TRUE"
, whenDEBUG
is"TRUE"
, or always).Note that if
DEBUG
is set to"TRUE"
,VERBOSE
will get reset to"TRUE"
if necessary in order to also print out all theVERBOSE
messages.TESTS CONDUCTED:
Ran the WE2E test
grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v15p2
as-is as well as with modifications to the default values ofVERBOSE
andDEBUG
, as follows:grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v15p2
as-is, i.e. using default valuesVERBOSE="TRUE"
andDEBUG="FALSE"
.grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v15p2
modified withVERBOSE="FALSE"
(and with default ofDEBUG="FALSE"
).grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v15p2
modified withDEBUG="TRUE"
(and with default ofVERBOSE="TRUE"
).grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v15p2
modified withDEBUG="TRUE"
andVERBOSE="FALSE"
(which should get reset to"TRUE"
).All tests were successful. The experiment generation log files (
log.generate_FV3LAM_wflow.sh
) were compared and differed in the expected ways.DOCUMENTATION:
Necessary documentation of
DEBUG
is inconfig_defaults.sh
. Created Issue #640 to also update rst documentation.