__construct() public method

Construct a new default logger.
public __construct ( )
Exemplo n.º 1
0
 /**
  * Construct new HtmlColorLogger
  * Perform initializations that cannot be done in var declarations.
  */
 public function __construct()
 {
     parent::__construct();
     $this->errColor = self::PREFIX . self::CLASS_ERR . self::SUFFIX;
     $this->warnColor = self::PREFIX . self::CLASS_WARN . self::SUFFIX;
     $this->infoColor = self::PREFIX . self::CLASS_INFO . self::SUFFIX;
     $this->verboseColor = self::PREFIX . self::CLASS_VERBOSE . self::SUFFIX;
     $this->debugColor = self::PREFIX . self::CLASS_DEBUG . self::SUFFIX;
 }
Exemplo n.º 2
0
 /**
  * Construct new MailLogger
  */
 public function __construct()
 {
     parent::__construct();
     @(require_once 'Mail.php');
     if (!class_exists('Mail')) {
         throw new BuildException('Need the PEAR Mail package to send logs');
     }
     $tolist = Phing::getDefinedProperty('phing.log.mail.recipients');
     if (!empty($tolist)) {
         $this->tolist = $tolist;
     }
 }
 /**
  * Construct new AnsiColorLogger
  * Perform initializations that cannot be done in var declarations.
  */
 public function __construct()
 {
     parent::__construct();
     $this->errColor = self::PREFIX . self::ATTR_DIM . self::SEPARATOR . self::FG_RED . self::SUFFIX;
     $this->warnColor = self::PREFIX . self::ATTR_DIM . self::SEPARATOR . self::FG_MAGENTA . self::SUFFIX;
     $this->infoColor = self::PREFIX . self::ATTR_DIM . self::SEPARATOR . self::FG_CYAN . self::SUFFIX;
     $this->verboseColor = self::PREFIX . self::ATTR_DIM . self::SEPARATOR . self::FG_GREEN . self::SUFFIX;
     $this->debugColor = self::PREFIX . self::ATTR_DIM . self::SEPARATOR . self::FG_BLUE . self::SUFFIX;
 }