diff options
| author | pazos <paziusss@gmail.com> | 2018-04-13 19:37:48 +0200 |
|---|---|---|
| committer | pazos <paziusss@gmail.com> | 2018-04-13 19:37:48 +0200 |
| commit | d074854aae27ddbf3c62ccf7c7200f368d709c44 (patch) | |
| tree | d47c7bb346d24cac5f59e078a757d83914111d77 /main.cpp | |
| parent | b4353a31ac9cfabd348eb14b4f334918b2abc135 (diff) | |
| download | monzero-gui-d074854aae27ddbf3c62ccf7c7200f368d709c44.tar.gz monzero-gui-d074854aae27ddbf3c62ccf7c7200f368d709c44.tar.xz monzero-gui-d074854aae27ddbf3c62ccf7c7200f368d709c44.zip | |
replace qDebug for qWarning, lean message
Diffstat (limited to 'main.cpp')
| -rw-r--r-- | main.cpp | 12 |
1 files changed, 3 insertions, 9 deletions
@@ -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"; |
