mirror of
https://github.com/dlang/phobos.git
synced 2025-04-27 21:51:40 +03:00
Fix documentation typos.
This commit is contained in:
parent
ffe00ebdc3
commit
c970ca67f2
1 changed files with 3 additions and 3 deletions
|
@ -1473,15 +1473,15 @@ if (sharedLog !is myLogger)
|
|||
atomicStore!(MemoryOrder.seq)(stdSharedLogger, atomicLoad(logger));
|
||||
}
|
||||
|
||||
/** This methods get and set the global `LogLevel`.
|
||||
/** These methods get and set the global `LogLevel`.
|
||||
|
||||
Every log message with a `LogLevel` lower as the global `LogLevel`
|
||||
Every log message with a `LogLevel` lower than the global `LogLevel`
|
||||
will be discarded before it reaches `writeLogMessage` method of any
|
||||
`Logger`.
|
||||
*/
|
||||
/* Implementation note:
|
||||
For any public logging call, the global log level shall only be queried once on
|
||||
entry. Otherwise when another threads changes the level, we would work with
|
||||
entry. Otherwise when another thread changes the level, we would work with
|
||||
different levels at different spots in the code.
|
||||
*/
|
||||
@property LogLevel globalLogLevel() @safe @nogc
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue