Skip to content

Commit

Permalink
fix: logLevel type syntax (#57)
Browse files Browse the repository at this point in the history
Typo in the logLevel type obj - semicolon instead of comma
  • Loading branch information
Dan Ziv authored Nov 15, 2017
1 parent 1c31f5d commit 6dd55a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/logger.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//@flow
import * as JsLogger from 'js-logger';

export type LogLevelType = { [level: string]: {value: number; name: string} };
export type LogLevelType = { [level: string]: {value: number, name: string} };

const LogLevel: LogLevelType = {
"DEBUG": JsLogger.DEBUG,
Expand Down

0 comments on commit 6dd55a6

Please sign in to comment.