Please change line 23 of command.module to post to watchdog as "command" instead of "patch.

Before:
watchdog('patch', 'Executed command

@command

Output was

@output

Return code was %return.', array('@command' => $command, '@output' => implode("\n", $output), '%return' => $return), $return == 0 ? WATCHDOG_NOTICE : WATCHDOG_ERROR);

After:
watchdog('command', 'Executed command

@command

Output was

@output

Return code was %return.', array('@command' => $command, '@output' => implode("\n", $output), '%return' => $return), $return == 0 ? WATCHDOG_NOTICE : WATCHDOG_ERROR);

Comments

rickmanelius’s picture

Bump?