change packwiz extra warnings to debug (#4388)
This commit is contained in:
@@ -71,7 +71,7 @@ auto stringEntry(toml::table table, QString entry_name) -> QString
|
|||||||
{
|
{
|
||||||
auto node = table[StringUtils::toStdString(entry_name)];
|
auto node = table[StringUtils::toStdString(entry_name)];
|
||||||
if (!node) {
|
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 {};
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -82,7 +82,7 @@ auto intEntry(toml::table table, QString entry_name) -> int
|
|||||||
{
|
{
|
||||||
auto node = table[StringUtils::toStdString(entry_name)];
|
auto node = table[StringUtils::toStdString(entry_name)];
|
||||||
if (!node) {
|
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 {};
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user