Merge pull request #1315

d074854 replace qDebug for qWarning, lean message
This commit is contained in:
luigi1111 2018-04-19 11:35:20 -05:00
commit 46dc634a5c
No known key found for this signature in database
GPG key ID: F4ACA0183641E010

View file

@ -229,15 +229,9 @@ int main(int argc, char *argv[])
engine.rootContext()->setContextProperty("scaleRatio", 1);
#endif
qDebug() << "available width: " << geo.width();
qDebug() << "available height: " << geo.height();
qDebug() << "devicePixelRatio: " << app.devicePixelRatio();
qDebug() << "screen height: " << height;
qDebug() << "screen width: " << width;
qDebug() << "screen logical dpi: " << dpi;
qDebug() << "screen Physical dpi: " << physicalDpi;
qDebug() << "screen calculated ratio: " << calculated_ratio;
qWarning().nospace() << "Qt:" << QT_VERSION_STR << " | screen: " << width
<< "x" << height << " - dpi: " << dpi << " - ratio:"
<< calculated_ratio;
if (!moneroAccountsRootDir.empty()) {
QString moneroAccountsDir = moneroAccountsRootDir.at(0) + "/Monero/wallets";