Skip to content

Commit e40b18f

Browse files
joshuaspenceepriestley
authored andcommitted
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
1 parent 4d30841 commit e40b18f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

support/aphlict/server/aphlict_server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ function transmit(msg) {
231231
debug.log('<%s> Wrote Message', listener.getDescription());
232232
} catch (error) {
233233
clients.removeListener(listener);
234-
debug.log('<%s> Write Error: %s', error);
234+
debug.log('<%s> Write Error: %s', listener.getDescription(), error);
235235
}
236236
}
237237
}

0 commit comments

Comments
 (0)