Fix bug with missing log level
Some checks failed
continuous-integration/appveyor/branch AppVeyor build failed
Some checks failed
continuous-integration/appveyor/branch AppVeyor build failed
This commit is contained in:
parent
5330ecfa5c
commit
dccad23890
1 changed files with 2 additions and 2 deletions
|
@ -4,11 +4,11 @@ import Util from '../core/util.mjs'
|
||||||
|
|
||||||
export function createFakeLog() {
|
export function createFakeLog() {
|
||||||
return {
|
return {
|
||||||
// debug: stub(),
|
debug: stub(),
|
||||||
info: stub(),
|
info: stub(),
|
||||||
warn: stub(),
|
warn: stub(),
|
||||||
error: stub(),
|
error: stub(),
|
||||||
// fatal: stub(),
|
fatal: stub(),
|
||||||
event: {
|
event: {
|
||||||
info: stub(),
|
info: stub(),
|
||||||
warn: stub(),
|
warn: stub(),
|
||||||
|
|
Loading…
Reference in a new issue