Merge pull request #26302 from nextcloud/backport/26299/stable20
[stable20] Log when a storage is marked as unavailable
This commit is contained in:
commit
a9df50c570
|
@ -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')
|
||||
|
|
Loading…
Reference in New Issue