From 20c7e4e971893fcee2f34c69517166b75b15c46f Mon Sep 17 00:00:00 2001 From: David A Minton Date: Fri, 19 May 2023 14:09:42 -0400 Subject: [PATCH] Fixed bug that prevented the tqdm progress bar to start --- src/swiftest/swiftest_io.f90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/swiftest/swiftest_io.f90 b/src/swiftest/swiftest_io.f90 index 692a1a0b1..0f2f6be2b 100644 --- a/src/swiftest/swiftest_io.f90 +++ b/src/swiftest/swiftest_io.f90 @@ -265,7 +265,7 @@ module subroutine swiftest_io_display_run_information(self, param, integration_t if (param%display_style == "PROGRESS") then call pbar%reset(param%nloops) else if (param%display_style == "COMPACT") then - write(param%display_unit,*) "SWIFTEST START " // trim(adjustl(param%integrator)) + write(*,*) "SWIFTEST START " // trim(adjustl(param%integrator)) end if end if #ifdef COARRAY