Any way to suppress or pipe Geant4 output after /run/initialize or beamOn?

Is there any way to suppress or direct the Geant4 output after /run/initialize or /run/beamOn to a log file? I mean the following:

=======================================================================
======                 Electromagnetic Physics Parameters      ========
=======================================================================
LPM effect enabled                                 1
Enable creation and use of sampling tables         0
Apply cuts on all EM processes                     0
Use combined TransportationWithMsc                 Disabled
Use general process                                1
Enable linear polarisation for gamma               0
Enable photoeffect sampling below K-shell          1
...
=======================================================================
======       Nuclear De-excitation Module Parameters           ========
=======================================================================
Type of de-excitation inverse x-section             3
Type of de-excitation factory                       Evaporation+GEM
Number of de-excitation channels                    68
Min excitation energy                               10 eV
Min energy per nucleon for multifragmentation       200 GeV
Limit excitation energy for Fermi BreakUp           20 MeV
Level density (1/MeV)                               0.075
Use simple level density model                      1
Use discrete excitation energy of the residual      0
Time limit for long lived isomeres                  1 ns
Isomer production flag                              1
Internal e- conversion flag                         1
Store e- internal conversion data                   1
Correlated gamma emission flag                      0
Max 2J for sampling of angular correlations         10
=======================================================================

=========================================================================
--> G4TaskRunManager::CreateAndStartWorkers() --> Initializing workers...
=========================================================================

I agree that they are essential for a simulation. But I’ve observed that most users ignore them anyway because they are TLTR. Warnings that are more important for debugging are imbedded in the long output and left unnoticed by my students most of the time.

Geant4 Version: 11.3.1
Operating System: Mac OS
Compiler/Version: Clang 17.0.0
CMake Version: 4.0.0


All (or at least most) of these can be controlled by UI commands or constructor arguments/member functions on the C++ side.

A non-complete but reasonably quiet set of UI commands are:

/control/verbose 0
/event/verbose 0
/run/verbose 0
/process/verbose 0
/process/em/verbose 0
/process/had/verbose 0
/tracking/verbose 0
/vis/verbose 0
1 Like
/process/em/verbose 0
/process/had/verbose 0

did the trick! Thank you!