Skip to content

Commit

Permalink
Print non-critical errors as warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
tumic0 committed Oct 6, 2024
1 parent ab19e57 commit 14dada5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/style.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ static bool loadSprites(const QDir &styleDir, const QString &json,
if (QFileInfo::exists(spritesImg))
return sprites.load(spritesJSON, spritesImg);
else {
qCritical() << spritesImg << ": no such file";
qWarning() << spritesImg << ": no such file";
return false;
}
}
Expand Down

0 comments on commit 14dada5

Please sign in to comment.