oppgave: logger

This commit is contained in:
2026-03-03 06:31:50 +01:00
parent 341848f3e8
commit 04a598a5fa
7 changed files with 117 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package oving6.logger;
public interface ILogger {
String ERROR = "error";
String WARNING = "warning";
String INFO = "info";
void log(String severity, String message, Exception exception);
}