Skip to content

Commit a6f6904

Browse files
committed
Fix: logging of warnings
1 parent b582a78 commit a6f6904

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kaleidoscope/logger.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def info(self, msg: str, *args, **kwargs): # noqa: D102
9393

9494
@override
9595
def warning(self, msg: str, *args, **kwargs): # noqa: D102
96-
self._logger.error(msg, *args, **kwargs)
96+
self._logger.warning(msg, *args, **kwargs)
9797

9898
@override
9999
def error(self, msg: str, *args, **kwargs): # noqa: D102

0 commit comments

Comments
 (0)