Skip to content

Commit 382faa8

Browse files
committed
Tweak README.md
1 parent 1123068 commit 382faa8

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,9 @@ The API is very simple. Supported log levels are
8080
* `TRACE`
8181
* `WARNING`
8282
83+
> [!Note]
84+
> These levels may not map exactly to the levels of your logging back-end. They are taken from `java.util.logging`. They get remapped to the most appropriate level your back-end supports.
85+
8386
You simply log on levels, like
8487
8588
```scala
@@ -105,7 +108,8 @@ WARNING.logDebug("No throwable.")
105108
WARNING.logDebug("With throwable.", t)
106109
```
107110
108-
_**Note:** `scribe` brings in filename and line number information by default, so `logDebug` may be less useful with that backend._
111+
> [!NOTE]
112+
> `scribe` brings in filename and line number information by default, so `logDebug` may be less useful with that backend.
109113
110114
Sometime for debugging purposes, you want to quickly have the value of an expression
111115
logged. For that, there is the `logEval` method, or just `apply` your level:

0 commit comments

Comments
 (0)