Skip to content

Commit

Permalink
warning msg redundancy
Browse files Browse the repository at this point in the history
  • Loading branch information
wpbonelli committed Jan 6, 2025
1 parent c70a764 commit 66407ba
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Model/ParticleTracking/prt-prp.f90
Original file line number Diff line number Diff line change
Expand Up @@ -351,14 +351,14 @@ subroutine prp_ad(this)
! starts, or if no `extend_tracking`, after it ends.
if (t < DZERO) then
write (warnmsg, '(a,g0,a)') &
'Warning: Skipping negative release time (t=', t, ').'
'Skipping negative release time (t=', t, ').'
call store_warning(warnmsg)
cycle
else if (t > totalsimtime .and. this%iextend == 0) then
write (warnmsg, '(a,g0,a)') &
'Warning: Skipping release time falling after the end &
&of the simulation (t=', t, '). Enable EXTEND_TRACKING &
&to release particles after the simulation end time.'
'Skipping release time falling after the end of the &
&simulation (t=', t, '). Enable EXTEND_TRACKING to &
&release particles after the simulation end time.'
call store_warning(warnmsg)
cycle
end if
Expand Down

0 comments on commit 66407ba

Please sign in to comment.