We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29e4ab0 commit ac48735Copy full SHA for ac48735
1 file changed
logging/jul/src/main/java/io/helidon/logging/jul/HelidonFormatter.java
@@ -1,5 +1,5 @@
1
/*
2
- * Copyright (c) 2020 Oracle and/or its affiliates.
+ * Copyright (c) 2020, 2021 Oracle and/or its affiliates.
3
*
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
* you may not use this file except in compliance with the License.
@@ -46,7 +46,10 @@ public class HelidonFormatter extends SimpleFormatter {
46
private final Set<String> parsedProps = new HashSet<>();
47
private final boolean thread;
48
49
- HelidonFormatter() {
+ /**
50
+ * Create new instance of the {@link HelidonFormatter}.
51
+ */
52
+ public HelidonFormatter() {
53
thread = format.contains(THREAD_TOKEN) || format.contains("%X{" + THREAD + "}");
54
Matcher matcher = X_VALUE.matcher(format);
55
while (matcher.find()) {
0 commit comments