From fed9a73627a42d0f2d1fc49b038c2e94118fe6f5 Mon Sep 17 00:00:00 2001 From: skyjake Date: Thu, 6 Jun 2013 22:39:48 +0300 Subject: [PATCH] Client|Widgets: Echo commands in the log when entered --- doomsday/client/src/ui/widgets/consolecommandwidget.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doomsday/client/src/ui/widgets/consolecommandwidget.cpp b/doomsday/client/src/ui/widgets/consolecommandwidget.cpp index a95d59b249..d57566fccf 100644 --- a/doomsday/client/src/ui/widgets/consolecommandwidget.cpp +++ b/doomsday/client/src/ui/widgets/consolecommandwidget.cpp @@ -89,6 +89,8 @@ bool ConsoleCommandWidget::handleEvent(Event const &event) { String const entered = d->history.enter(); + LOG_INFO(DENG2_ESC("1") "> ") << entered; + // Execute the command right away. Con_Execute(CMDS_CONSOLE, entered.toUtf8(), false, false);