fix: don't say "error" just because a loadout category is unimplemented (#692)

This commit is contained in:
Sainan 2025-01-03 09:19:06 +01:00 committed by GitHub
parent 0523fbdaae
commit 69734ea101
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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
}