Skip to content

Commit 186fc96

Browse files
committed
fix: Use info instead of warning to avoid filling logs
Signed-off-by: Enjeck C <patrathewhiz@gmail.com>
1 parent 48a919f commit 186fc96

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/Service/NoteUtil.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ public function getNotesFolderUserPath(string $userId): ?string {
189189
try {
190190
$nodesFolder = $this->getOrCreateNotesFolder($userId, false);
191191
} catch (NotesFolderException $e) {
192-
$this->util->logger->warning("Failed to get notes folder for user $userId: " . $e->getMessage());
192+
$this->util->logger->info("Failed to get notes folder for user $userId: " . $e->getMessage());
193193
return null;
194194
}
195195
return $userFolder->getRelativePath($nodesFolder->getPath());

0 commit comments

Comments
 (0)