diff options
author | 2023-08-08 01:59:39 +0200 | |
---|---|---|
committer | 2023-08-07 16:59:39 -0700 | |
commit | 51f4395060f9c98542bfaa91c91f94543bf7b52f (patch) | |
tree | 705c9eaa2e225240737583fbedfec0b63eb80dbc | |
parent | fa5dc424956cae58ec910bee49e1b9118fc1feb0 (diff) | |
download | WarpX-51f4395060f9c98542bfaa91c91f94543bf7b52f.tar.gz WarpX-51f4395060f9c98542bfaa91c91f94543bf7b52f.tar.zst WarpX-51f4395060f9c98542bfaa91c91f94543bf7b52f.zip |
add back printing of warning messages at the end of the simulation (#4154)
-rw-r--r-- | Source/main.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/main.cpp b/Source/main.cpp index 3051539d8..f98674d2a 100644 --- a/Source/main.cpp +++ b/Source/main.cpp @@ -39,7 +39,8 @@ int main(int argc, char* argv[]) warpx.Evolve(); //Print warning messages at the end of the simulation - ablastr::warn_manager::GetWMInstance().PrintGlobalWarnings("THE END"); + amrex::Print() << + ablastr::warn_manager::GetWMInstance().PrintGlobalWarnings("THE END"); timer.record_stop_time(); if (warpx.Verbose()) { |