1
0
Fork 0
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:
Joshua Spence 2014-06-14 11:28:16 -07:00 committed by epriestley
parent 4d30841100
commit e40b18fb75

View file

@ -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);
}
}
}