mirror of
https://github.com/geode-sdk/geode.git
synced 2025-03-31 07:10:28 -04:00
Add mod ids to logged removed keys of ModInfo
This commit is contained in:
parent
b0d72b0c79
commit
fc72c24e2e
1 changed files with 3 additions and 3 deletions
|
@ -101,12 +101,12 @@ Result<ModInfo> ModInfo::Impl::createFromSchemaV010(ModJson const& rawJson) {
|
|||
// removed keys
|
||||
if (root.has("datastore")) {
|
||||
log::error(
|
||||
"[mod.json].datastore has been deprecated "
|
||||
"and removed. Use Saved Values instead (see TODO: DOCS LINK)"
|
||||
"{}: [mod.json].datastore has been deprecated "
|
||||
"and removed. Use Saved Values instead (see TODO: DOCS LINK)", impl->m_id
|
||||
);
|
||||
}
|
||||
if (root.has("binary")) {
|
||||
log::error("[mod.json].binary has been deprecated and removed.");
|
||||
log::error("{}: [mod.json].binary has been deprecated and removed.", impl->m_id);
|
||||
}
|
||||
|
||||
if (checker.isError()) {
|
||||
|
|
Loading…
Add table
Reference in a new issue