Skip to content

Commit

Permalink
Reduce colored entries for a clearer output
Browse files Browse the repository at this point in the history
  • Loading branch information
aradi committed Jul 3, 2024
1 parent 2c686d1 commit b273c5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/fortuno/consolelogger.f90
Original file line number Diff line number Diff line change
Expand Up @@ -349,10 +349,10 @@ recursive subroutine write_failure_info_(this, failureinfo)
call write_failure_info_(this, failureinfo%previous)
if (failureinfo%location%checknr /= 0) then
if (this%is_active()) &
& write(stdout, "(/, 3a)") ansicolors%red, "-> Unsuccessful check", ansicolors%default
& write(stdout, "(/, a)") "-> Unsuccessful check"
else
if (this%is_active()) &
& write(stdout, "(/, 3a)") ansicolors%red, "-> Failure", ansicolors%default
& write(stdout, "(/, a)") "-> Failure"
end if
call this%get_failure_info_repr(failureinfo, location, message, details)
if (this%is_active()) then
Expand Down

0 comments on commit b273c5e

Please sign in to comment.