2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-12-17 07:57:47 +00:00

chore: small adjustment to console log levels

This commit is contained in:
Jan Laupetin
2025-12-16 14:13:52 +00:00
parent a6cc54fce0
commit bcf2b0a3ae
2 changed files with 6 additions and 6 deletions

View File

@@ -93,7 +93,7 @@ namespace T6
return sndBankPtr; return sndBankPtr;
} }
con::error("Failed to load sound bank '{}'", soundBankFileName); con::warn("Could not find sound bank '{}'", soundBankFileName);
return nullptr; return nullptr;
} }

View File

@@ -113,11 +113,11 @@ namespace
} }
const auto keyPos = keyToken.GetPos(); const auto keyPos = keyToken.GetPos();
con::error("Warning: {} L{}: Zone definition \">type,{}\" is deprecated and should be removed. {}", con::warn("Deprecated: {} L{}: Zone definition \">type,{}\" is deprecated and should be removed. {}",
keyPos.m_filename.get(), keyPos.m_filename.get(),
keyPos.m_line, keyPos.m_line,
keyToken.FieldValue(), keyToken.FieldValue(),
deprecationSuggestedAction); deprecationSuggestedAction);
} }
} // namespace } // namespace