Active
Project:
Command
Version:
6.x-1.0-alpha1
Component:
Code
Priority:
Major
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
1 Nov 2010 at 20:48 UTC
Updated:
7 Jul 2011 at 21:28 UTC
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
Comment #1
rickmanelius commentedBump?