autotagging_calais.module
autotagging_tagthenet.module
autotagging_yahoo_terms.module

watchdog function looks like its been miscalled, this then causes more errors when you try to view the recent error log as the information is of the wrong type.

To fix change

watchdog('autotagging_yahoo_terms', 'Received response code '. $response->code .' from Yahoo Terms', WATCHDOG_SEVERE);

TO

watchdog('autotagging_yahoo_terms', 'Received response code '. $response->code .' from Yahoo Terms', NULL, WATCHDOG_SEVERE);

ofc this example is for the yahoo_terms module update model name as required.

Comments

IncrediblyKenzi’s picture

Status: Active » Fixed

Corrected.

IncrediblyKenzi’s picture

Status: Fixed » Closed (fixed)