log/log.ts

15 lines
375 B
TypeScript
Raw Normal View History

2024-10-11 10:52:22 +08:00
// 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 '' }