fix: don't say "error" just because a loadout category is unimplemented

This commit is contained in:
Sainan 2025-01-03 07:56:01 +01:00
parent f1c0c5a429
commit 76238a7812

View File

@ -178,7 +178,9 @@ export const handleInventoryItemConfigChange = async (
break;
}
default: {
logger.error(`category not implemented: ${equipmentName}`, { config: equipment });
logger.warn(`loadout category not implemented, changes may be lost: ${equipmentName}`, {
config: equipment
});
}
//case "KahlLoadOuts": not sure yet how to handle kahl: it is not sent in inventory
}