Development

Changeset 6727

You must first sign up to be able to contribute.

Changeset 6727

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

added action and module name to the log when an action does not exist

Files:

Legend:

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

    r6726 r6727  
    202202      if (sfConfig::get('sf_logging_enabled')) 
    203203      { 
    204         $this->dispatcher->notify(new sfEvent($this, 'application.log', array('Action does not exist'))); 
     204        $this->dispatcher->notify(new sfEvent($this, 'application.log', array(sprintf('Action "%s/%s" does not exist', $moduleName, $actionName)))); 
    205205      } 
    206206