mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-17 20:32:41 +01:00
Fix call to debug.log
.
Summary: As pointed out by @epriestley in D9458#62, this call to `debug.log` is missing an argument. Test Plan: meh.. Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D9485
This commit is contained in:
parent
4d30841100
commit
e40b18fb75
1 changed files with 1 additions and 1 deletions
|
@ -231,7 +231,7 @@ function transmit(msg) {
|
|||
debug.log('<%s> Wrote Message', listener.getDescription());
|
||||
} catch (error) {
|
||||
clients.removeListener(listener);
|
||||
debug.log('<%s> Write Error: %s', error);
|
||||
debug.log('<%s> Write Error: %s', listener.getDescription(), error);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue