mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-06-30 02:20:00 +03:00
change packwiz extra warnings to debug (#4388)
This commit is contained in:
commit
63e6fc28dc
1 changed files with 2 additions and 2 deletions
|
|
@ -71,7 +71,7 @@ auto stringEntry(toml::table table, QString entry_name) -> QString
|
|||
{
|
||||
auto node = table[StringUtils::toStdString(entry_name)];
|
||||
if (!node) {
|
||||
qWarning() << "Failed to read str property '" + entry_name + "' in mod metadata.";
|
||||
qDebug() << "Failed to read str property '" + entry_name + "' in mod metadata.";
|
||||
return {};
|
||||
}
|
||||
|
||||
|
|
@ -82,7 +82,7 @@ auto intEntry(toml::table table, QString entry_name) -> int
|
|||
{
|
||||
auto node = table[StringUtils::toStdString(entry_name)];
|
||||
if (!node) {
|
||||
qWarning() << "Failed to read int property '" + entry_name + "' in mod metadata.";
|
||||
qDebug() << "Failed to read int property '" + entry_name + "' in mod metadata.";
|
||||
return {};
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue