Skip to content

Commit 2e107ba

Browse files
committed
change errors to warnlevel
1 parent 5c87a24 commit 2e107ba

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/verbosity.jl

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ function LinearVerbosity(;
106106
Silent(),
107107
InfoLevel(),
108108
Silent(),
109-
ErrorLevel(),
110-
ErrorLevel(),
109+
WarnLevel(),
110+
WarnLevel(),
111111
Silent(),
112112
Silent(),
113113
Silent(),
@@ -148,8 +148,8 @@ function LinearVerbosity(;
148148
KrylovJL_verbosity = Silent(),
149149
HYPRE_verbosity = InfoLevel(),
150150
pardiso_verbosity = Silent(),
151-
blas_errors = ErrorLevel(),
152-
blas_invalid_args = ErrorLevel(),
151+
blas_errors = WarnLevel(),
152+
blas_invalid_args = WarnLevel(),
153153
blas_info = Silent(),
154154
blas_success = Silent(),
155155
condition_number=Silent(),
@@ -193,8 +193,8 @@ function LinearVerbosity(verbose::AbstractVerbosityPreset)
193193
KrylovJL_verbosity = Silent(),
194194
HYPRE_verbosity = Silent(),
195195
pardiso_verbosity = Silent(),
196-
blas_errors = ErrorLevel(),
197-
blas_invalid_args = ErrorLevel(),
196+
blas_errors = WarnLevel(),
197+
blas_invalid_args = WarnLevel(),
198198
blas_info = Silent(),
199199
blas_success = Silent(),
200200
condition_number = Silent(),
@@ -216,8 +216,8 @@ function LinearVerbosity(verbose::AbstractVerbosityPreset)
216216
KrylovJL_verbosity = CustomLevel(1), # verbose = true in Krylov.jl
217217
HYPRE_verbosity = InfoLevel(),
218218
pardiso_verbosity = CustomLevel(1), # verbose = true in Pardiso.jl
219-
blas_errors = ErrorLevel(),
220-
blas_invalid_args = ErrorLevel(),
219+
blas_errors = WarnLevel(),
220+
blas_invalid_args = WarnLevel(),
221221
blas_info = InfoLevel(),
222222
blas_success = InfoLevel(),
223223
condition_number = Silent(),
@@ -236,8 +236,8 @@ function LinearVerbosity(verbose::AbstractVerbosityPreset)
236236
KrylovJL_verbosity = CustomLevel(1),
237237
HYPRE_verbosity = InfoLevel(),
238238
pardiso_verbosity = CustomLevel(1), # verbsoe = true in Pardiso.jl
239-
blas_errors = ErrorLevel(),
240-
blas_invalid_args = ErrorLevel(),
239+
blas_errors = WarnLevel(),
240+
blas_invalid_args = WarnLevel(),
241241
blas_info = InfoLevel(),
242242
blas_success = InfoLevel(),
243243
condition_number = InfoLevel(),

0 commit comments

Comments
 (0)