We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcbbe40 commit d81affbCopy full SHA for d81affb
slf4j-api/src/main/java/org/slf4j/helpers/ThreadLocalMapOfStacks.java
@@ -15,6 +15,9 @@
15
*/
16
public class ThreadLocalMapOfStacks {
17
18
+ // BEWARE: Keys or values placed in a ThreadLocal should not be of a type/class
19
+ // not included in the JDK. See also https://jira.qos.ch/browse/LOGBACK-450
20
+
21
final ThreadLocal<Map<String, Deque<String>>> tlMapOfStacks = new ThreadLocal<>();
22
23
public void pushByKey(String key, String value) {
0 commit comments