vue-vben-admin/src/utils/log.ts

10 lines
252 B
TypeScript
Raw Normal View History

2020-10-21 21:44:57 +08:00
const projectName = import.meta.env.VITE_GLOB_APP_TITLE;
2020-11-18 22:41:59 +08:00
2020-10-21 21:44:57 +08:00
export function warn(message: string) {
console.warn(`[${projectName} warn]:${message}`);
}
2020-12-25 01:09:44 +08:00
export function error(message: string) {
throw new Error(`[${projectName} error]:${message}`);
}