Added some more error logging for database and filesystem store backends

This is to address issue #1554
This commit is contained in:
zertrin
2025-07-16 15:44:22 +00:00
parent 80d8c8d831
commit 330855f58d
2 changed files with 7 additions and 0 deletions
+1
View File
@@ -456,6 +456,7 @@ class Filesystem extends AbstractData
self::PROTECTION_LINE . PHP_EOL . Json::encode($data)
);
} catch (Exception $e) {
error_log('Error while trying to store data to the filesystem at path "' . $filename . '": ' . $e->getMessage() . PHP_EOL);
return false;
}
}