Log when a storage is marked as unavailable
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
parent
769c6fedad
commit
cf8be87e47
|
@ -30,6 +30,7 @@
|
|||
namespace OC\Files\Cache;
|
||||
|
||||
use OCP\Files\Storage\IStorage;
|
||||
use Psr\Log\LoggerInterface;
|
||||
|
||||
/**
|
||||
* Handle the mapping between the string and numeric storage ids
|
||||
|
@ -175,6 +176,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')
|
||||
|
|
Loading…
Reference in New Issue