You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/basics/common_solver_opts.md
+17-17Lines changed: 17 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,16 +44,16 @@ The following verbosity levels are available:
44
44
45
45
#### Individual Settings
46
46
These settings are meant for individual settings within a category. These can also be used to set all of the individual settings in a group to the same value.
47
-
-Verbosity.None() - Suppress all messages
48
-
-Verbosity.Info() - Show message as log message at info level
49
-
-Verbosity.Warn() - Show warnings (default for most settings)
50
-
-Verbosity.Error() - Throw errors instead of warnings
51
-
-Verbosity.Level(n) - Show messages with a log level setting of n
47
+
-SciMLLogging.None() - Suppress all messages
48
+
-SciMLLogging.Info() - Show message as log message at info level
49
+
-SciMLLogging.Warn() - Show warnings (default for most settings)
50
+
-SciMLLogging.Error() - Throw errors instead of warnings
51
+
-SciMLLogging.Level(n) - Show messages with a log level setting of n
52
52
53
53
#### Group Settings
54
54
These settings are meant for controlling a group of settings.
55
-
-Verbosity.Default() - Use the default settings
56
-
-Verbosity.All() - Show all possible messages
55
+
-SciMLLogging.Default() - Use the default settings
56
+
-SciMLLogging.All() - Show all possible messages
57
57
58
58
### Basic Usage
59
59
@@ -63,16 +63,16 @@ These settings are meant for controlling a group of settings.
63
63
using LinearSolve
64
64
65
65
# Suppress all messages
66
-
verbose =LinearVerbosity(Verbosity.None())
66
+
verbose =LinearVerbosity(SciMLLogging.None())
67
67
prob =LinearProblem(A, b)
68
68
sol =solve(prob; verbose=verbose)
69
69
70
70
# Show all messages
71
-
verbose =LinearVerbosity(Verbosity.All())
71
+
verbose =LinearVerbosity(SciMLLogging.All())
72
72
sol =solve(prob; verbose=verbose)
73
73
74
74
# Use default settings
75
-
verbose =LinearVerbosity(Verbosity.Default())
75
+
verbose =LinearVerbosity(SciMLLogging.Default())
76
76
sol =solve(prob; verbose=verbose)
77
77
```
78
78
@@ -81,9 +81,9 @@ sol = solve(prob; verbose=verbose)
81
81
```julia
82
82
# Customize by category
83
83
verbose =LinearVerbosity(
84
-
error_control =Verbosity.Warn(), # Show warnings for error control related issues
0 commit comments