Skip to content

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
JordiManyer committed Jan 5, 2024
1 parent 16e253f commit b133b16
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/SolverInterfaces/ConvergenceLogs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ function ConvergenceLog(name :: String,
depth = 0
) where T
residuals = Vector{T}(undef,tols.maxiter+1)
verbose = (isa(verbose,Bool) && verbose) ? SOLVER_VERBOSE_HIGH : verbose
verbose = isa(verbose,SolverVerboseLevel) ? verbose : SolverVerboseLevel(verbose)
verbose = SolverVerboseLevel(verbose)
if nested
depth += 1
end
Expand Down

0 comments on commit b133b16

Please sign in to comment.