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