From a49e230d638bbbf0d89396cfd8ca6db1d0d8b0c1 Mon Sep 17 00:00:00 2001 From: matcool <26722564+matcool@users.noreply.github.com> Date: Thu, 18 Jan 2024 19:46:14 -0300 Subject: [PATCH] disable this warning its annoying --- loader/src/loader/Index.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loader/src/loader/Index.cpp b/loader/src/loader/Index.cpp index 51937493..ffc45f49 100644 --- a/loader/src/loader/Index.cpp +++ b/loader/src/loader/Index.cpp @@ -425,7 +425,7 @@ void Index::Impl::updateFromLocalTree() { auto addRes = IndexItem::Impl::create(rootDir, dir); if (!addRes) { - log::warn("Unable to add index item from {}: {}", dir, addRes.unwrapErr()); + // log::warn("Unable to add index item from {}: {}", dir, addRes.unwrapErr()); continue; } auto add = addRes.unwrap();