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:
committed by
epriestley
parent
4d30841100
commit
e40b18fb75
@@ -231,7 +231,7 @@ function transmit(msg) {
|
|||||||
debug.log('<%s> Wrote Message', listener.getDescription());
|
debug.log('<%s> Wrote Message', listener.getDescription());
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
clients.removeListener(listener);
|
clients.removeListener(listener);
|
||||||
debug.log('<%s> Write Error: %s', error);
|
debug.log('<%s> Write Error: %s', listener.getDescription(), error);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user