Skip to content

Commit baf91a7

Browse files
authored
Removed deprecated warning. (helidon-io#2619)
Signed-off-by: Tomas Langer <tomas.langer@oracle.com>
1 parent 4900134 commit baf91a7

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

common/common/src/main/java/io/helidon/common/HelidonConsoleHandler.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2019, 2020 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.
@@ -43,9 +43,12 @@ public HelidonConsoleHandler() {
4343
setOutputStream(System.out);
4444
setLevel(Level.ALL); // Handlers should not filter, loggers should
4545
setFormatter(new ThreadFormatter());
46+
// we need to decide how to handle all of our examples and templates, before warning users
47+
/*
4648
System.out.println("You are using deprecated logging handler -> io.helidon.common.HelidonConsoleHandler "
47-
+ "Please use helidon-logging-jul module and change your handler to "
48-
+ "io.helidon.logging.jul.HelidonConsoleHandler");
49+
+ "Please use helidon-logging-jul module and change your handler to "
50+
+ "io.helidon.logging.jul.HelidonConsoleHandler");
51+
*/
4952
}
5053

5154
@Override

0 commit comments

Comments
 (0)