From 22da88b43f770c69d78d059165b333459e7f88d7 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 10 May 2022 01:14:27 +0000 Subject: [PATCH] Changed log level --- src/Contact/Avatar.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Contact/Avatar.php b/src/Contact/Avatar.php index a69ccdff85..9d06995ec5 100644 --- a/src/Contact/Avatar.php +++ b/src/Contact/Avatar.php @@ -129,13 +129,13 @@ class Avatar } } elseif (fileperms($dirpath) & 0777 != $dir_perm) { if (!chmod($dirpath, $dir_perm)) { - Logger::warning('Directory permissions could not be changed', ['directory' => $dirpath]); + Logger::info('Directory permissions could not be changed', ['directory' => $dirpath]); } } if (filegroup($dirpath) != $group) { if (!chgrp($dirpath, $group)) { - Logger::warning('Directory group could not be changed', ['directory' => $dirpath]); + Logger::info('Directory group could not be changed', ['directory' => $dirpath]); } } }