Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions cime_config/config_component.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2310,15 +2310,6 @@
<desc>determine if per ice thickness category fields are passed from ice to ocean - DO NOT EDIT (set by MOM6)</desc>
</entry>

<entry id="INFO_DBUG">
<type>integer</type>
<valid_values>0,1,2,3,4,5,6,7,8,9</valid_values>
<default_value>1</default_value>
<group>run_flags</group>
<file>env_run.xml</file>
<desc>level of debug output, 0=minimum, 1=normal, 2=more, 3=too much</desc>
</entry>

<!-- Prerun/postrun custom script options -->

<entry id="PRERUN_SCRIPT">
Expand Down
18 changes: 15 additions & 3 deletions cime_config/namelist_definition_drv.xml
Original file line number Diff line number Diff line change
Expand Up @@ -879,15 +879,27 @@
</values>
</entry>

<entry id="info_debug" modify_via_xml="INFO_DBUG">
<entry id="dbug_flag">
<type>integer</type>
<category>expdef</category>
<group>MED_attributes</group>
<desc>
Level of debug output, 0=minimum, 1=normal, 2=more, 3=too much (default: 1)
Level of debug output; higher values give progressively more output

Some example values (other values are also accepted)
- 0: no extra debug output
- 1: a bit of debug output
- 2: a bit more debug output
- 6: a moderate amount of debug output
- 11: a lot of debug output
- 21: a huge amount of debug output

Note that setting this to moderate - high values can lead to overwhelming amounts of output.

(Default: 0)
</desc>
<values>
<value>$INFO_DBUG</value>
<value>0</value>
</values>
</entry>

Expand Down