bug
This commit is contained in:
parent
84745ac2f2
commit
abe2e0f09a
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ const censorLogArg = (arg: any) => {
|
|||
let out: any = {};
|
||||
for (let key in arg) {
|
||||
if (key == "accountKey") out[key] = new Array(arg[key].length).fill("*").join("");
|
||||
out[key] = censorLogArg(arg[key]);
|
||||
else out[key] = censorLogArg(arg[key]);
|
||||
}
|
||||
return out;
|
||||
}
|
Loading…
Reference in a new issue