forked from mystiq/hydrogen-web
Throw on export() in ConsoleLogger
This commit is contained in:
parent
377cc4ca1f
commit
839d3fb689
1 changed files with 4 additions and 0 deletions
|
@ -19,6 +19,10 @@ export class ConsoleLogger extends BaseLogger {
|
|||
_persistItem(item) {
|
||||
printToConsole(item);
|
||||
}
|
||||
|
||||
export() {
|
||||
throw new Error("Cannot export from ConsoleLogger");
|
||||
}
|
||||
}
|
||||
|
||||
const excludedKeysFromTable = ["l", "id"];
|
||||
|
|
Loading…
Reference in a new issue