Skip to content

Commit 4a24142

Browse files
fmessmerHannesBachter
authored andcommitted
harmonize
1 parent aef46f4 commit 4a24142

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

flexbe_core/src/flexbe_core/logger.py

+12
Original file line numberDiff line numberDiff line change
@@ -110,3 +110,15 @@ def localdebug(text: str, *args):
110110
@staticmethod
111111
def localinfo(text: str, *args):
112112
Logger.local(text % args, Logger.REPORT_INFO)
113+
114+
@staticmethod
115+
def localwarn(text: str, *args):
116+
Logger.local(text % args, Logger.REPORT_WARN)
117+
118+
@staticmethod
119+
def localhint(text: str, *args):
120+
Logger.local(text % args, Logger.REPORT_HINT)
121+
122+
@staticmethod
123+
def localerr(text: str, *args):
124+
Logger.local(text % args, Logger.REPORT_ERROR)

0 commit comments

Comments
 (0)