Skip to content

Commit 032ab31

Browse files
authored
log-levels: Update message to correct class name (#2732)
1 parent 3c73508 commit 032ab31

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
public class LogLevels {
22

33
public static String message(String logLine) {
4-
throw new UnsupportedOperationException("Please implement the (static) LogLine.message() method");
4+
throw new UnsupportedOperationException("Please implement the (static) LogLevels.message() method");
55
}
66

77
public static String logLevel(String logLine) {
8-
throw new UnsupportedOperationException("Please implement the (static) LogLine.logLevel() method");
8+
throw new UnsupportedOperationException("Please implement the (static) LogLevels.logLevel() method");
99
}
1010

1111
public static String reformat(String logLine) {
12-
throw new UnsupportedOperationException("Please implement the (static) LogLine.reformat() method");
12+
throw new UnsupportedOperationException("Please implement the (static) LogLevels.reformat() method");
1313
}
1414
}

0 commit comments

Comments
 (0)