Development

Changeset 6728

You must first sign up to be able to contribute.

Changeset 6728

Show
Ignore:
Timestamp:
12/26/07 22:59:28 (1 year ago)
Author:
fabien
Message:

added action and module name to the log when an action does not exist (closes #2516)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/1.0/lib/controller/sfController.class.php

    r3221 r6728  
    199199      if (sfConfig::get('sf_logging_enabled')) 
    200200      { 
    201         $this->getContext()->getLogger()->info('{sfController} action does not exist'); 
     201        $this->getContext()->getLogger()->info(sprintf('{sfController} action "%s/%s" does not exist', $moduleName, $actionName)); 
    202202      } 
    203203