Files
kiss-translator/src/libs/log.js
2024-03-19 18:07:18 +08:00

13 lines
220 B
JavaScript

/**
* 日志函数
* @param {*} msg
* @param {*} type
*/
export const kissLog = (msg, type) => {
let prefix = `[KISS-Translator]`;
if (type) {
prefix += `[${type}]`;
}
console.log(`${prefix} ${msg}`);
};