From 6e1e847750dc593bcb2571c9775b2db11661cdb2 Mon Sep 17 00:00:00 2001 From: oldmud0 Date: Thu, 30 Dec 2021 20:44:59 -0600 Subject: Add and refine debug log messages (#625) Since these are going to be visible to the user now, at least let's properly format them and make them somewhat helpful. --- src/lobby.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lobby.cpp') diff --git a/src/lobby.cpp b/src/lobby.cpp index e9d95e09..a18e5c28 100644 --- a/src/lobby.cpp +++ b/src/lobby.cpp @@ -205,7 +205,7 @@ void Lobby::set_size_and_pos(QWidget *p_widget, QString p_identifier) ao_app->get_element_dimensions(p_identifier, filename); if (design_ini_result.width < 0 || design_ini_result.height < 0) { - qWarning() << "could not find " << p_identifier << " in " << filename; + qWarning() << "could not find" << p_identifier << "in" << filename; p_widget->hide(); } else { -- cgit