Skip to content

Commit 18339ae

Browse files
committed
fixed space in logs to back server parser compatibility
1 parent fcd4a44 commit 18339ae

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/writelog.f90

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ subroutine writelog(string)
55

66
character(len=*) :: string
77

8-
write(*,*) trim(adjustl(string))
8+
write(*,*) " "//trim(adjustl(string))
99

1010
if ( output_log ) then
11-
write(output_log_unit,*) trim(adjustl(string))
11+
write(output_log_unit,*) " "//trim(adjustl(string))
1212
end if
1313

1414
return

0 commit comments

Comments
 (0)