Skip to content

Commit

Permalink
🐛 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kitUIN committed Dec 2, 2024
1 parent 0874850 commit 39c117d
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 76 deletions.
2 changes: 1 addition & 1 deletion code_version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.11.1
0.11.2

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package io.github.kituin.chatimage.integration;

import io.github.kituin.ChatImageCode.IChatImageCodeLogger;
import io.github.kituin.chatimage.ChatImage;
import io.github.kituin.ChatImageCode.IChatImageCodeLogger;

public class ChatImageLogger implements IChatImageCodeLogger {

Expand Down Expand Up @@ -34,4 +34,15 @@ public void error(String s) {
public void error(String s, Object... objects) {
ChatImage.LOGGER.error(s, objects);
}


@Override
public void warn(String s) {
ChatImage.LOGGER.warn(s);
}

@Override
public void warn(String s, Object... objects) {
ChatImage.LOGGER.warn(s, objects);
}
}

0 comments on commit 39c117d

Please sign in to comment.