Skip to content

Commit

Permalink
refactor: Use warning instead of error
Browse files Browse the repository at this point in the history
Signed-off-by: Cleopatra Enjeck M. <patrathewhiz@gmail.com>
  • Loading branch information
enjeck committed Feb 20, 2025
1 parent a2a041a commit 2385a9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Service/NoteUtil.php
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ public function getNotesFolderUserPath(string $userId): ?string {
try {
$nodesFolder = $this->getOrCreateNotesFolder($userId, false);
} catch (NotesFolderException $e) {
$this->util->logger->error("Failed to get notes folder for user $userId: " . $e->getMessage());
$this->util->logger->warning("Failed to get notes folder for user $userId: " . $e->getMessage());
return null;
}
return $userFolder->getRelativePath($nodesFolder->getPath());
Expand Down

0 comments on commit 2385a9b

Please sign in to comment.