MCPcopy Index your code
hub / github.com/alibaba/lowcode-engine / debug

Method debug

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

Source from the content-addressed store, hash-verified

160 this.targetLevel = targetOptions.level;
161 }
162 debug(...args: any[]): void {
163 if (!shouldOutput('debug', this.targetLevel, this.bizName, this.targetBizName)) {
164 return;
165 }
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;

Callers

nothing calls this directly

Calls 2

shouldOutputFunction · 0.85
outputFunction · 0.85

Tested by

no test coverage detected