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

Method log

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

Source from the content-addressed store, hash-verified

166 return output('debug', this.bizName)(args);
167 }
168 log(...args: any[]): void {
169 if (!shouldOutput('log', this.targetLevel, this.bizName, this.targetBizName)) {
170 return;
171 }
172 return output('log', this.bizName)(args);
173 }
174 info(...args: any[]): void {
175 if (!shouldOutput('info', this.targetLevel, this.bizName, this.targetBizName)) {
176 return;

Callers

nothing calls this directly

Calls 2

shouldOutputFunction · 0.85
outputFunction · 0.85

Tested by

no test coverage detected