diff options
author | John Molakvoæ <skjnldsv@protonmail.com> | 2023-12-14 09:49:49 +0100 |
---|---|---|
committer | Andy Scherzinger <info@andy-scherzinger.de> | 2023-12-14 16:34:47 +0100 |
commit | aa7098cc38d326a5d043667cf8d385b738789bf0 (patch) | |
tree | 797137d8a19f51ab38ace14c2ca2bb2bc91c021a /apps | |
parent | bf850542a6a3a4aefc9de4fb604785ab523b7ece (diff) | |
download | nextcloud-server-aa7098cc38d326a5d043667cf8d385b738789bf0.tar.gz nextcloud-server-aa7098cc38d326a5d043667cf8d385b738789bf0.zip |
fix(files): templates logger usage
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/src/init-templates.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/src/init-templates.ts b/apps/files/src/init-templates.ts index 90651826a7c..879b60d0ee4 100644 --- a/apps/files/src/init-templates.ts +++ b/apps/files/src/init-templates.ts @@ -60,7 +60,7 @@ document.body.appendChild(TemplatePickerRoot) // Retrieve and init templates let templates = loadState('files', 'templates', []) let templatesPath = loadState('files', 'templates_path', false) -logger.debug('Templates providers', templates) +logger.debug('Templates providers', { templates }) logger.debug('Templates folder', { templatesPath }) // Init vue app |