Skip to content

Commit 7cbf736

Browse files
committed
Loggers should be named for their enclosing classes
1 parent 629c781 commit 7cbf736

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

operator-framework/src/main/java/com/github/containersolutions/operator/ControllerUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class ControllerUtils {
1717

1818
private final static double JAVA_VERSION = Double.parseDouble(System.getProperty("java.specification.version"));
1919

20-
private final static Logger log = LoggerFactory.getLogger(Operator.class);
20+
private final static Logger log = LoggerFactory.getLogger(ControllerUtils.class);
2121

2222
// this is just to support testing, this way we don't try to create class multiple times in memory with same name.
2323
// note that other solution is to add a random string to doneable class name

0 commit comments

Comments
 (0)