diff options
author | elijah <elijah@riseup.net> | 2016-10-06 22:23:54 -0700 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2016-10-06 22:23:54 -0700 |
commit | ae5d132c2747af10651d8747bcad30cc0b4b12b7 (patch) | |
tree | a45f936960366a23f47e8ea6e5e3da001aaaacba /ui/app/app.js | |
parent | 2fdfc4ed731c6c82b7d5ebf995eb114b416a53d8 (diff) |
[feat] ui - log all events to console, for now.
Diffstat (limited to 'ui/app/app.js')
-rw-r--r-- | ui/app/app.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ui/app/app.js b/ui/app/app.js index 3b3ac5de..75c7cb8a 100644 --- a/ui/app/app.js +++ b/ui/app/app.js @@ -1,6 +1,7 @@ import bitmask from 'lib/bitmask' import Account from 'models/account' import Provider from 'models/provider' +import EventLogger from 'lib/event_logger' class Application { constructor() { @@ -10,6 +11,7 @@ class Application { // main entry point for the application // initialize() { + this.ev = new EventLogger() if (this.debugging()) { this.show(this.debug_panel) } else { |