Skip to content

Commit

Permalink
Merge pull request #109 from matrix-org/hs/log-fix
Browse files Browse the repository at this point in the history
Log fix
  • Loading branch information
Half-Shot authored Feb 12, 2020
2 parents 7478c9a + 92a5941 commit 17c7c92
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.d/109.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix exception involving `log.log`
2 changes: 1 addition & 1 deletion src/xmppjs/XJSGateway.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export class XmppJsGateway implements IGateway {
}
if (member.devices.size) {
// User still has other devices, not leaving.
log.log(`User has ${member.devices.size} other devices, not leaving.`);
log.info(`User has ${member.devices.size} other devices, not leaving.`);
return;
}
this.xmpp.emit("chat-user-left", {
Expand Down

0 comments on commit 17c7c92

Please sign in to comment.