From bb087315b1592a90ce61d1eea5565bf0c3c9f7cf Mon Sep 17 00:00:00 2001 From: Don Gagne Date: Thu, 19 Sep 2024 10:35:17 -0700 Subject: [PATCH] Warnings should not be categorized --- src/QGCApplication.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/QGCApplication.cc b/src/QGCApplication.cc index cfe0b209e93..b000582e12d 100644 --- a/src/QGCApplication.cc +++ b/src/QGCApplication.cc @@ -392,10 +392,10 @@ void QGCApplication::init() // Although this should really be in _initForNormalAppBoot putting it here allowws us to create unit tests which pop up more easily if(QFontDatabase::addApplicationFont(":/fonts/opensans") < 0) { - qCWarning(QGCApplicationLog) << "Could not load /fonts/opensans font"; + qWarning() << "Could not load /fonts/opensans font"; } if(QFontDatabase::addApplicationFont(":/fonts/opensans-demibold") < 0) { - qCWarning(QGCApplicationLog) << "Could not load /fonts/opensans-demibold font"; + qWarning() << "Could not load /fonts/opensans-demibold font"; } if (!_runningUnitTests) {