From 56b142b30c3bcc64bfd5e8a32772e6cf61a1c6f1 Mon Sep 17 00:00:00 2001 From: Spencer Bryngelson Date: Sat, 21 Feb 2026 17:57:06 -0500 Subject: [PATCH] Remove debug print left in QBMM production code Remove a diagnostic print statement that was left in the prim-to-cons conversion path for QBMM bubbles. This print fires every time step at cell (0,0,0), polluting stdout in production runs. Co-Authored-By: Claude Opus 4.6 --- src/common/m_variables_conversion.fpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/common/m_variables_conversion.fpp b/src/common/m_variables_conversion.fpp index 1f8245da8b..8faa615dad 100644 --- a/src/common/m_variables_conversion.fpp +++ b/src/common/m_variables_conversion.fpp @@ -1101,8 +1101,6 @@ contains nbub = 3._wp*q_prim_vf(alf_idx)%sf(j, k, l)/(4._wp*pi*R3tmp) end if - if (j == 0 .and. k == 0 .and. l == 0) print *, 'In convert, nbub:', nbub - do i = bub_idx%beg, bub_idx%end q_cons_vf(i)%sf(j, k, l) = q_prim_vf(i)%sf(j, k, l)*nbub end do