This repository was archived by the owner on Jun 4, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +7
-8
lines changed
uk/bot_by/aws_lambda/slf4j Expand file tree Collapse file tree 4 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ It looks for the `lambda-logger.properties` resource and read properties:
7979 If not specified, defaults to _ info_ .
8080* ** levelInBrackets** - Should the level string be output in brackets? Defaults to ` false ` .
8181* ** showDateTime** - Set to ` true ` if you want the current date and time to be included in output
82- messages. Default is ` false ` .
82+ messages. Defaults to ` false ` .
8383* ** showLogName** - Set to ` true ` if you want the Logger instance name to be included in output
8484 messages. Defaults to ` true ` .
8585* ** showShortLogName** - Set to ` true ` if you want the last component of the name to be included in
Original file line number Diff line number Diff line change 1919import org .slf4j .spi .MDCAdapter ;
2020
2121/**
22- * Responsible for binding the {@link MDCAdapter }. This is used by the SLF4J API.
22+ * Responsible for binding the {@link BasicMDCAdapter }. This is used by the SLF4J API.
2323 *
2424 * @author Witalij Berdinskich
2525 * @since 1.0.0
@@ -39,7 +39,7 @@ public static StaticMDCBinder getSingleton() {
3939 }
4040
4141 /**
42- * Returns an instance of {@link BasicMDCAdapter}.
42+ * This method always returns an instance of {@link BasicMDCAdapter}.
4343 *
4444 * @return instance of an MDCAdapter
4545 */
Original file line number Diff line number Diff line change 1616package org .slf4j .impl ;
1717
1818import org .slf4j .IMarkerFactory ;
19- import org .slf4j .MarkerFactory ;
2019import org .slf4j .helpers .BasicMarkerFactory ;
2120import org .slf4j .spi .MarkerFactoryBinder ;
2221
2322/**
24- * Responsible for binding the {@link MarkerFactory }. This is used by the SLF4J API.
23+ * Responsible for binding the {@link BasicMarkerFactory }. This is used by the SLF4J API.
2524 *
2625 * @author Witalij Berdinskich
2726 * @since 1.0.0
@@ -43,7 +42,7 @@ public static StaticMarkerBinder getSingleton() {
4342 }
4443
4544 /**
46- * This method always returns a {@link BasicMarkerFactory}.
45+ * This method always returns an instance of {@link BasicMarkerFactory}.
4746 *
4847 * @return a marker factory instance
4948 */
Original file line number Diff line number Diff line change 4040 * <li><strong>levelInBrackets</strong> - Should the level string be output in brackets?
4141 * Defaults to {@code false}.</li>
4242 * <li><strong>showDateTime</strong> - Set to {@code true} if you want the current date and time
43- * to be included in output messages. Default is {@code false}.</li>
43+ * to be included in output messages. Defaults to {@code false}.</li>
4444 * <li><strong>showLogName</strong> - Set to {@code true} if you want the Logger instance name
4545 * to be included in output messages. Defaults to {@code true}.</li>
4646 * <li><strong>showShortLogName</strong> - Set to {@code true} if you want the last component of the name
@@ -208,7 +208,7 @@ public Builder name(@NotNull String name) {
208208 /**
209209 * Set to {@code true} if you want the current date and time to be included in output messages.
210210 * <p>
211- * Default is {@code false}.
211+ * Defaults to {@code false}.
212212 *
213213 * @param showDateTime show date and time
214214 * @return a builder
You can’t perform that action at this time.
0 commit comments