Don't log missing user-locators

While user-locators are the "new hotness", most events still get their
list of users by calling a hook.  That means this log message basically
just spams up the prod echo log for no benefit.

Change-Id: Iba5a8267c4ecc5a7446b287759d8b66adf0e2387
This commit is contained in:
Erik Bernhardson 2015-02-11 10:12:03 -08:00 committed by Mattflaschen
parent 5599aee518
commit a70320d268

View file

@ -81,7 +81,6 @@ class EchoAttributeManager {
if ( isset( $this->notifications[$type]['user-locators'] ) ) {
return (array)$this->notifications[$type]['user-locators'];
} else {
wfDebugLog( 'Echo', __METHOD__ . ": No user-locators configured for $type" );
return array();
}
}