Deprecated Feature Removal

- Removed deprecated 'echo.command' setting, in favor of the 'header' and
  'affected' verbosity tokens.
This commit is contained in:
Paul Beckingham 2013-10-20 14:40:57 -04:00
parent 49c07acb05
commit 2cbae3fb9c
9 changed files with 16 additions and 28 deletions

View file

@ -67,8 +67,7 @@ int CmdLog::execute (std::string& output)
context.footnote (onProjectChange (task));
context.tdb2.commit ();
if (context.verbose ("affected") ||
context.config.getBoolean ("echo.command")) // Deprecated 2.0
if (context.verbose ("affected"))
output = std::string (STRING_CMD_LOG_LOGGED) + "\n";
return rc;