Skip to content

Commit

Permalink
Fix log
Browse files Browse the repository at this point in the history
  • Loading branch information
kefniark committed Jun 29, 2017
1 parent 4cfcf82 commit c1488e0
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions build/fatina.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ export function Ticker(): ITicker;
export function LoadPlugin(newPlugin: IPlugin): void;

export enum Log {
None = "none",
Info = "info",
Debug = "debug",
None = 0,
Info = 1,
Debug = 2,
}

export interface IControl {
Expand Down
6 changes: 3 additions & 3 deletions build/fatina.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/fatina.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/fatina.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/fatina.min.js.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/fatina/core/enum/log.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @enum {number}
*/
export enum Log {
None = 'none',
Info = 'info',
Debug = 'debug'
None = 0,
Info = 1,
Debug = 2
}

0 comments on commit c1488e0

Please sign in to comment.