Setup: Remove debug message for "caches"
authorTimo Tijhof <krinklemail@gmail.com>
Sat, 31 Aug 2019 15:33:06 +0000 (16:33 +0100)
committerAaron Schulz <aschulz@wikimedia.org>
Sat, 31 Aug 2019 19:47:43 +0000 (19:47 +0000)
commit70cb2664805a723c063a063bd4899c254f44b308
tree4d872e6faa2ca6f0e97f3fbdde21fe385a1bb030
parent582419334a7576ea7ee78a785a00c9e20c9429c4
Setup: Remove debug message for "caches"

This is currently forcing more object cache interfaces to be constructed
than might be needed in a given request. The configuration for these
interfaces is usually quite straight forward or can be trivially
verified from eval.php.

If we do want to log this, I would recommend doing it from the classes
constructor instead e.g. something like:

  LoggerFactory::getInstance('MessageCache')->debug( get_class( $cache ) );

Bug: T189966
Change-Id: I06dc6dfbdf274bb57e9295b0c757b8d52c02acbe
includes/Setup.php