Closed (fixed)
Project:
FFmpeg Wrapper
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
5 Mar 2009 at 18:46 UTC
Updated:
19 Mar 2009 at 19:00 UTC
The call to watchdog on line 802 is malformed:
watchdog('FFmpeg', $message, WATCHDOG_ERROR);
Syslog module is expecting an array instead of WATCHDOG_ERROR and freaks out. Should be:
watchdog('FFmpeg', $message, array(), WATCHDOG_ERROR);
Comments
Comment #1
arthurf commentedThanks for the catch, fix is in CVS