diff --git a/src/opnsense/mvc/app/library/OPNsense/Backup/GDrive.php b/src/opnsense/mvc/app/library/OPNsense/Backup/GDrive.php index b995df62819..88bf83f2f21 100644 --- a/src/opnsense/mvc/app/library/OPNsense/Backup/GDrive.php +++ b/src/opnsense/mvc/app/library/OPNsense/Backup/GDrive.php @@ -246,7 +246,7 @@ public function backup() } } if (!is_null($target_filename)) { - syslog(LOG_ERR, "backup configuration as " . $target_filename); + syslog(LOG_NOTICE, "backup configuration as " . $target_filename); try { $configfiles[$target_filename] = $client->upload( (string)$config->system->remotebackup->GDriveFolderID, @@ -269,7 +269,7 @@ public function backup() $fcount = 0; foreach ($configfiles as $filename => $file) { if ($fcount >= (string)$config->system->remotebackup->GDriveBackupCount) { - syslog(LOG_ERR, "remove " . $filename . " from Google Drive"); + syslog(LOG_NOTICE, "remove " . $filename . " from Google Drive"); try { $client->delete($file); } catch (Google_Service_Exception $e) {