mirror of
https://github.com/cocos/cocos-engine.git
synced 2026-09-06 15:48:37 +08:00
7 lines
174 B
TypeScript
7 lines
174 B
TypeScript
const logEnabled = false;
|
|
|
|
export function log(message?: any, ...optionalParams: any[]): void {
|
|
if (logEnabled) {
|
|
console.log(message, ...optionalParams);
|
|
}
|
|
} |