Skip to content
This repository has been archived by the owner on Feb 1, 2022. It is now read-only.

Commit

Permalink
fix: fixed errlog default
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Apr 10, 2018
1 parent dc55264 commit 7adfa9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export class Config {
set debug(v: boolean) { globals.debug = v }
get context(): any { return globals.context || {} }
set context(v: any) { globals.context = v }
get errlog(): string | undefined { return globals.errlog || {} }
get errlog(): string | undefined { return globals.errlog }
set errlog(v: string | undefined) { globals.errlog = v }
}

Expand Down

0 comments on commit 7adfa9a

Please sign in to comment.