From bc18846d752f773a9143a7729ba123e9a26127d8 Mon Sep 17 00:00:00 2001 From: nathan Date: Wed, 17 Nov 2021 08:49:32 -0700 Subject: [PATCH] Improve logging message to include values instead of 'Array' --- api/src/Vfs/Base.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/Vfs/Base.php b/api/src/Vfs/Base.php index df037b8f8c..d49758e61e 100644 --- a/api/src/Vfs/Base.php +++ b/api/src/Vfs/Base.php @@ -278,7 +278,7 @@ class Base { if(self::LOG_LEVEL > 1) { - error_log(__METHOD__ . "('$path') = '" . self::$resolve_url_cache[$path] . "' (from cache)"); + error_log(__METHOD__ . "('$path') = '" . print_r(self::$resolve_url_cache[$path], true) . "' (from cache)"); } $mounted = self::$resolve_url_cache[$path]['mounted']; return self::$resolve_url_cache[$path]['url'];