Skip to content

Commit

Permalink
console didn't implement .log()
Browse files Browse the repository at this point in the history
  • Loading branch information
TitanNano committed Aug 16, 2018
1 parent 13e678d commit 730ecd9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions lib/Console.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ const Console = {

debug(...args) { return this._print('debug', ...args); },

log(...args) { return this._print('log', ...args); },

dir(...args) { return this._print('dir', ...args); },

info(...args) { return this._print('info', ...args); },
Expand Down
2 changes: 1 addition & 1 deletion lib/bindings/AnimationBinding.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Binding from '../Binding';
import { ObjectParser, parseExpression } from '../Parser';
import EventTarget from '../../af/core/EventTarget';
import { hasPrototype } from '../../af/util/make';
import console from './Console';
import console from '../Console';

export const ANIMATION_BINDING_LOOPED = Symbol('ANIMATION_BINDING_LOOPED');

Expand Down

0 comments on commit 730ecd9

Please sign in to comment.