From 96d6cb6e1635855cf549c3a6e7d0d26aa5bbb30f Mon Sep 17 00:00:00 2001 From: Bryan Davis Date: Thu, 17 Mar 2016 16:43:50 -0600 Subject: [PATCH] Rename ApiRequest to ApiAction Half of the work needed for handling this logging stream was done using the channel name "ApiRequest" and the other half was done under the name "ApiAction". The ApiRequest naming is easier to change at this point. Bug: T108618 Change-Id: I5797731abeba22ef6ced7c8407ee670344d35b3d --- includes/api/ApiMain.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/api/ApiMain.php b/includes/api/ApiMain.php index 074cca538a..df3f516700 100644 --- a/includes/api/ApiMain.php +++ b/includes/api/ApiMain.php @@ -1401,8 +1401,8 @@ class ApiMain extends ApiBase { } wfDebugLog( 'api', $msg, 'private' ); - // ApiRequest channel is for structured data consumers - wfDebugLog( 'ApiRequest', '', 'private', $logCtx ); + // ApiAction channel is for structured data consumers + wfDebugLog( 'ApiAction', '', 'private', $logCtx ); } /** -- 2.20.1