- Posts: 1
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
'log' => array( 'routes' => array( 'allError' => array( 'class' => 'CFileLogRoute', 'levels' => 'warning, error', ), ) ),
Property "LSYii_Application.log" is not defined.
C:\usr\xampp\htdocs\limesurvey\framework\base\CModule.php(520)
508 $this->setComponent($id,$component,$merge);
509 }
510
511 /**
512 * Configures the module with the specified configuration.
513 * @param array $config the configuration array
514 */
515 public function configure($config)
516 {
517 if(is_array($config))
518 {
519 foreach($config as $key=>$value)
520 $this->$key=$value;
521 }
522 }
523
524 /**
525 * Loads static application components.
526 */
527 protected function preloadComponents()
528 {
529 foreach($this->preload as $id)
530 $this->getComponent($id);
531 }
Yep,olle wrote: 'log' config should be part of 'components' config, I think.