From 754d5430e91f80b5e2da410735398493b7e50149 Mon Sep 17 00:00:00 2001 From: Ian Grooms Date: Thu, 24 Aug 2023 07:48:05 -0600 Subject: [PATCH] Improve logging Removed `do_not_log` condition on `USE_LEITHY` --- src/parameterizations/lateral/MOM_hor_visc.F90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parameterizations/lateral/MOM_hor_visc.F90 b/src/parameterizations/lateral/MOM_hor_visc.F90 index 40a12c7598..de92a006b7 100644 --- a/src/parameterizations/lateral/MOM_hor_visc.F90 +++ b/src/parameterizations/lateral/MOM_hor_visc.F90 @@ -2087,7 +2087,7 @@ subroutine hor_visc_init(Time, G, GV, US, param_file, diag, CS, ADp) call get_param(param_file, mdl, "USE_LEITHY", CS%use_Leithy, & "If true, use a biharmonic Leith nonlinear eddy "//& "viscosity together with a harmonic backscatter.", & - default=.false., do_not_log=.not.(CS%biharmonic .and. CS%Laplacian)) + default=.false.) call get_param(param_file, mdl, "BOUND_AH", CS%bound_Ah, & "If true, the biharmonic coefficient is locally limited "//& "to be stable.", default=.true., do_not_log=.not.CS%biharmonic)