@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

authored by

Joshua Spence and committed by
epriestley
e40b18fb 4d308411

+1 -1
+1 -1
support/aphlict/server/aphlict_server.js
··· 231 231 debug.log('<%s> Wrote Message', listener.getDescription()); 232 232 } catch (error) { 233 233 clients.removeListener(listener); 234 - debug.log('<%s> Write Error: %s', error); 234 + debug.log('<%s> Write Error: %s', listener.getDescription(), error); 235 235 } 236 236 } 237 237 }