From fc9a48a113e39fbae715d2345319a138583b21e7 Mon Sep 17 00:00:00 2001 From: Igor Kushnir Date: Fri, 4 Nov 2022 18:31:04 +0200 Subject: [PATCH] Demote missing favorites file message from warning to debug This file is never created if the Favorites feature is not used. Fix a typo along the way: "favorities" => "favorites". --- favoritespanewidget.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/favoritespanewidget.cc b/favoritespanewidget.cc index 9a00d1c1..46bfdc58 100644 --- a/favoritespanewidget.cc +++ b/favoritespanewidget.cc @@ -627,7 +627,7 @@ void FavoritesModel::readData() QFile favoritesFile( m_favoritesFilename ); if( !favoritesFile.open( QFile::ReadOnly ) ) { - gdWarning( "No favorities file found" ); + gdDebug( "No favorites file found" ); return; }