Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/private/Files/Cache/Storage.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/private/Files/Cache/Storage.php b/lib/private/Files/Cache/Storage.php
index af37bef8415..173091f53b0 100644
--- a/lib/private/Files/Cache/Storage.php
+++ b/lib/private/Files/Cache/Storage.php
@@ -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')