fix: convert remaining ReliefWeb console.warn to console.log

This commit is contained in:
Elie Habib
2026-04-07 07:48:18 +04:00
parent 52b055d74e
commit 8e6f3192e7

View File

@@ -321,7 +321,7 @@ async function fetchReliefWeb() {
console.log(` [ReliefWeb] ${mapped.length} disasters from ${rows.length} rows`);
return mapped;
}
if (rows.length > 0) console.warn(`[climate-disasters] ${rows.length} ReliefWeb rows returned but all mapped to null`);
if (rows.length > 0) console.log(` [ReliefWeb] ${rows.length} rows returned but all mapped to null`);
} catch (err) {
lastError = err;
const message = String(err?.message || err);