From: Christoph Egger Date: Tue, 17 Feb 2015 13:27:32 +0000 (+0100) Subject: Add missing space to log message X-Git-Tag: v0.1~109 X-Git-Url: https://git.siccegge.de//index.cgi?p=frida%2Ffrida.git;a=commitdiff_plain;h=10d250c78f36a41d98a6dca768f4e2dafec64e57 Add missing space to log message --- diff --git a/src/gui/Mainwindow.cxx b/src/gui/Mainwindow.cxx index 754d5b2..55bc86d 100644 --- a/src/gui/Mainwindow.cxx +++ b/src/gui/Mainwindow.cxx @@ -138,7 +138,7 @@ void Mainwindow::renameFunction(QListWidgetItem * item) { RenameFunctionDialog dialog; int result = dialog.exec(); if (QDialog::Accepted == result) { - LOG4CXX_DEBUG(logger, "renaming Function" << item->text().toStdString() + LOG4CXX_DEBUG(logger, "renaming Function " << item->text().toStdString() << " to " << dialog.result().toStdString()); item->setText(dialog.result()); } else {