Example #1
0
 /**
  * @param string $tags Either a list of coma-separated tags
  *	is passed, or the "*"-wildcard is used, which logs
  *	all debug messages. If this parameter is left empty,
  *	no messages are logged.
  */
 public static function setTags($tags = null)
 {
     self::$tags = $tags ? explode(',', $tags) : false;
 }