mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-01-13 12:18:50 +01:00
6 lines
192 B
TypeScript
6 lines
192 B
TypeScript
export const log = (method: string, content: string, type: string, print: boolean) => {
|
|
if (print) {
|
|
// @ts-ignore
|
|
console.log(`${method} - ${type}: ${content}`);
|
|
}
|
|
};
|