MCPcopy Create free account
hub / github.com/alibaba/lowcode-engine / warn

Method warn

packages/utils/src/logger.ts:180–185  ·  view source on GitHub ↗
(...args: any[])

Source from the content-addressed store, hash-verified

178 return output('info', this.bizName)(args);
179 }
180 warn(...args: any[]): void {
181 if (!shouldOutput('warn', this.targetLevel, this.bizName, this.targetBizName)) {
182 return;
183 }
184 return output('warn', this.bizName)(args);
185 }
186 error(...args: any[]): void {
187 if (!shouldOutput('error', this.targetLevel, this.bizName, this.targetBizName)) {
188 return;

Callers

nothing calls this directly

Calls 2

shouldOutputFunction · 0.85
outputFunction · 0.85

Tested by

no test coverage detected