Skip to content

Commit 87dad2c

Browse files
committed
fix line
1 parent 66f4c8e commit 87dad2c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

docs/src/developer_tutorial.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ SciMLLogging.jl provides four main components for package developers:
1414
### AbstractVerbositySpecifier
1515
`AbstractVerbositySpecifier{T}` is the base type that package developers implement a subtype of to create custom verbosity type for their packages.
1616
17-
- Type parameter T: Controls whether logging is enabled
18-
(T=true) or disabled (T=false). When `T = false`, any use of the `SciMLLogging.emit_message` function points to any empty function. When the the type parameter is known at compile time, this allows for the compiler to make certain optimizations that can lead to this system having zero runtime overhead when not in use.
17+
- Type parameter T: Controls whether logging is enabled (T=true) or disabled (T=false). When `T = false`, any use of the `SciMLLogging.emit_message` function points to any empty function. When the the type parameter is known at compile time, this allows for the compiler to make certain optimizations that can lead to this system having zero runtime overhead when not in use.
1918
- Message levels: Fields of the `AbstractVerbositySpecifier` represent messages or groups of messages. These fields should be of the type `SciMLLogging.MessageLevel`. Each message level subtype represents a different level at which the message will be logged at.
2019
### @SciMLMessage
2120
```@docs

0 commit comments

Comments
 (0)