CmdDiagnostics: Removed log

This commit is contained in:
Paul Beckingham 2016-04-06 20:12:03 -04:00
parent 1e65133efd
commit 4b24f86b0d
3 changed files with 3 additions and 5 deletions

View file

@ -206,7 +206,6 @@ int dispatchCommand (
{
// These signatures are æxpected to be all different, therefore no
// command to fn mapping.
else if (command == "diagnostics") status = CmdDiagnostics ( rules, database, extensions, log);
else if (command == "export") status = CmdExport (cli, rules, database, log);
else if (command == "extensions") status = CmdExtensions ( rules, extensions );
else if (command == "gaps") status = CmdGaps ( );
@ -222,6 +221,7 @@ int dispatchCommand (
else if (command == "config") status = CmdConfig ( );
else if (command == "continue") status = CmdContinue ( rules, database );
else if (command == "define") status = CmdDefine (cli, rules, database );
else if (command == "diagnostics") status = CmdDiagnostics ( rules, database, extensions);
}
else
{