log/log.ts
Star 85dee34f6b support log exception
add getExceptionString
2024-12-13 19:26:36 +08:00

15 lines
375 B
TypeScript

// just for develop
export default {
debug,
info,
warn,
error,
}
function debug(message: string, info?: Object): void { }
function info(message: string, info?: Object): void { }
function warn(message: string, info?: Object): void { }
function error(message: string, info?: Object): void { }
function getExceptionString(exception: any): string { return '' }