Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion slf4j-site/src/site/pages/manual.html
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ <h3 class="doAnchor" name="fluent">Fluent Logging API</h3>
int oldT = 16;

// using classical API
logger.debug("oldT={} newT={} Temperature changed.", newT, oldT);
logger.debug("oldT={} newT={} Temperature changed.", oldT, newT);

// using fluent API
logger.atDebug().<b>addKeyValue("oldT", oldT)</b>.addKeyValue("newT", newT).log("Temperature changed.");
Expand Down