Skip to content

Commit ac48735

Browse files
authored
HelidonFormatter constructor made public (helidon-io#3609)
HelidonFormatter constructor made public Signed-off-by: David Kral <david.k.kral@oracle.com>
1 parent 29e4ab0 commit ac48735

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

logging/jul/src/main/java/io/helidon/logging/jul/HelidonFormatter.java

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2020 Oracle and/or its affiliates.
2+
* Copyright (c) 2020, 2021 Oracle and/or its affiliates.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -46,7 +46,10 @@ public class HelidonFormatter extends SimpleFormatter {
4646
private final Set<String> parsedProps = new HashSet<>();
4747
private final boolean thread;
4848

49-
HelidonFormatter() {
49+
/**
50+
* Create new instance of the {@link HelidonFormatter}.
51+
*/
52+
public HelidonFormatter() {
5053
thread = format.contains(THREAD_TOKEN) || format.contains("%X{" + THREAD + "}");
5154
Matcher matcher = X_VALUE.matcher(format);
5255
while (matcher.find()) {

0 commit comments

Comments
 (0)