We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aef46f4 commit 4a24142Copy full SHA for 4a24142
flexbe_core/src/flexbe_core/logger.py
@@ -110,3 +110,15 @@ def localdebug(text: str, *args):
110
@staticmethod
111
def localinfo(text: str, *args):
112
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
119
+ def localhint(text: str, *args):
120
+ Logger.local(text % args, Logger.REPORT_HINT)
121
122
123
+ def localerr(text: str, *args):
124
+ Logger.local(text % args, Logger.REPORT_ERROR)
0 commit comments