mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-29 18:48:45 +08:00
commit
1cdd81909c
@ -474,11 +474,18 @@ export function debug(cat: Category, msg: string, ext?: object) {
|
|||||||
console.debug(ext);
|
console.debug(ext);
|
||||||
console.groupEnd();
|
console.groupEnd();
|
||||||
|
|
||||||
|
let extStr = '';
|
||||||
|
try {
|
||||||
|
extStr = JSON.stringify(ext);
|
||||||
|
} catch (e) {
|
||||||
|
console.error(e);
|
||||||
|
}
|
||||||
|
|
||||||
const log = {
|
const log = {
|
||||||
cat,
|
cat,
|
||||||
level: 'debug',
|
level: 'debug',
|
||||||
msg: msg,
|
msg: msg,
|
||||||
ext: JSON.stringify(ext)
|
ext: extStr
|
||||||
};
|
};
|
||||||
store.logs.push(log);
|
store.logs.push(log);
|
||||||
}
|
}
|
||||||
@ -492,11 +499,19 @@ export function warning(cat: Category, msg: string, ext?: object) {
|
|||||||
if (!isEnabled) {
|
if (!isEnabled) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let extStr = '';
|
||||||
|
try {
|
||||||
|
extStr = JSON.stringify(ext);
|
||||||
|
} catch (e) {
|
||||||
|
console.error(e);
|
||||||
|
}
|
||||||
|
|
||||||
const log = {
|
const log = {
|
||||||
cat,
|
cat,
|
||||||
level: 'warn',
|
level: 'warn',
|
||||||
msg: msg,
|
msg: msg,
|
||||||
ext: JSON.stringify(ext)
|
ext: extStr
|
||||||
};
|
};
|
||||||
|
|
||||||
console.groupCollapsed('amis debug', msg);
|
console.groupCollapsed('amis debug', msg);
|
||||||
|
Loading…
Reference in New Issue
Block a user