10 defined(
'JPATH_PLATFORM') or die;
58 protected $priorities = array(
79 public function __construct($message, $priority =
JLog::INFO, $category =
'', $date = null)
81 $this->message = (string) $message;
84 if (!in_array($priority, $this->priorities,
true))
88 $this->priority = $priority;
91 if (!empty($category))
93 $this->category = (string) strtolower(preg_replace(
'/[^A-Z0-9_\.-]/i',
'', $category));
97 $this->date =
new JDate($date ? $date :
'now');