@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.

Remove "phlog()" of exeptions during Conduit calls

Summary: Fixes T13465. This "phlog()" made some degree of sense at one time, but is no longer useful or consistent. Get rid of it. See T13465 for discussion.

Test Plan: Made a conduit call that hit a policy error, no longer saw error in log.

Maniphest Tasks: T13465

Differential Revision: https://secure.phabricator.com/D20924

-3
-3
src/applications/conduit/controller/PhabricatorConduitAPIController.php
··· 99 99 list($error_code, $error_info) = $auth_error; 100 100 } 101 101 } catch (Exception $ex) { 102 - if (!($ex instanceof ConduitMethodNotFoundException)) { 103 - phlog($ex); 104 - } 105 102 $result = null; 106 103 $error_code = ($ex instanceof ConduitException 107 104 ? 'ERR-CONDUIT-CALL'