diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2016-08-31 15:07:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-31 15:07:13 +0200 |
commit | a0af513a4a4adc295f5673fd7d1d7fd25c6ac75a (patch) | |
tree | e1587c68dee5e6bc2b58bacb39f1ea46455ebc23 /lib | |
parent | e4311a2ebdf3eeda8b2f1022c19290dc68db8ae5 (diff) | |
parent | 423378ea179574c6c9c272f785e94a4bdfc996bb (diff) | |
download | nextcloud-server-a0af513a4a4adc295f5673fd7d1d7fd25c6ac75a.tar.gz nextcloud-server-a0af513a4a4adc295f5673fd7d1d7fd25c6ac75a.zip |
Merge pull request #1201 from nextcloud/usermountcache-orphanedshare
[master] Usermountcache orphanedshare
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/Files/Config/UserMountCache.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/private/Files/Config/UserMountCache.php b/lib/private/Files/Config/UserMountCache.php index ab58a976873..bd8343fa440 100644 --- a/lib/private/Files/Config/UserMountCache.php +++ b/lib/private/Files/Config/UserMountCache.php @@ -159,7 +159,8 @@ class UserMountCache implements IUserMountCache { 'mount_id' => $mount->getMountId() ], ['root_id', 'user_id']); } else { - $this->logger->error('Error getting storage info for mount at ' . $mount->getMountPoint()); + // in some cases this is legitimate, like orphaned shares + $this->logger->debug('Could not get storage info for mount at ' . $mount->getMountPoint()); } } |