mirror of
https://github.com/nextcloud/server.git
synced 2026-06-13 10:40:40 -04:00
Merge pull request #1722 from nextcloud/hide-storage-warnings
hide storage wrapper warning for the readonly storage
This commit is contained in:
commit
deb59d3d48
1 changed files with 1 additions and 1 deletions
|
|
@ -225,7 +225,7 @@ class Filesystem {
|
|||
* @param int $priority
|
||||
*/
|
||||
public static function addStorageWrapper($wrapperName, $wrapper, $priority = 50) {
|
||||
if (self::$logWarningWhenAddingStorageWrapper) {
|
||||
if (self::$logWarningWhenAddingStorageWrapper && $wrapperName !== 'readonly') {
|
||||
\OC::$server->getLogger()->warning("Storage wrapper '{wrapper}' was not registered via the 'OC_Filesystem - preSetup' hook which could cause potential problems.", [
|
||||
'wrapper' => $wrapperName,
|
||||
'app' => 'filesystem',
|
||||
|
|
|
|||
Loading…
Reference in a new issue