- Added feedback after running the 'log' command, because task was
  otherwise silent.
This commit is contained in:
Cory Donnelly 2010-07-17 19:33:19 -04:00 committed by Paul Beckingham
parent 63e42c6607
commit 3dca0283f4
2 changed files with 4 additions and 0 deletions

View file

@ -199,6 +199,9 @@ int handleLog (std::string &outs)
context.tdb.commit ();
context.tdb.unlock ();
if (context.config.getBoolean ("echo.command"))
out << "Logged task." << std::endl;
outs = out.str ();
context.hooks.trigger ("post-log-command");
}