Log when a storage is marked as unavailable

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
Morris Jobke 2021-03-25 16:14:20 +01:00 committed by backportbot[bot]
parent f6cbda9e60
commit 3fe78684ad
1 changed files with 4 additions and 0 deletions

View File

@ -31,6 +31,7 @@
namespace OC\Files\Cache;
use OCP\Files\Storage\IStorage;
use Psr\Log\LoggerInterface;
/**
* Handle the mapping between the string and numeric storage ids
@ -176,6 +177,9 @@ class Storage {
*/
public function setAvailability($isAvailable, int $delay = 0) {
$available = $isAvailable ? 1 : 0;
if (!$isAvailable) {
\OC::$server->get(LoggerInterface::class)->info('Storage with ' . $this->storageId . ' marked as unavailable', ['app' => 'lib']);
}
$query = \OC::$server->getDatabaseConnection()->getQueryBuilder();
$query->update('storages')