2024-10-11 10:52:22 +08:00
|
|
|
// just for develop
|
|
|
|
|
|
|
|
export default {
|
|
|
|
debug,
|
|
|
|
info,
|
|
|
|
warn,
|
|
|
|
error,
|
|
|
|
}
|
|
|
|
|
2024-12-13 19:26:36 +08:00
|
|
|
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 '' }
|