siyuan/app/src/protyle/util/log.ts

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}`);
}
};