Skip to content

Commit 2a0df3a

Browse files
committed
logs
1 parent b74bc01 commit 2a0df3a

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/core/EventBus.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ function EventBus() {
9393
}
9494

9595
function off(type, listener, scope) {
96+
console.log('off', type, listener, scope);
9697
if (!type || !listener || !handlers[type]) {
9798
return;
9899
}
@@ -181,6 +182,8 @@ function EventBus() {
181182
}
182183

183184
function reset() {
185+
console.log('eventbus reset');
186+
console.trace();
184187
handlers = {};
185188
}
186189

0 commit comments

Comments
 (0)