Example #1
0
 /**
  * Check if the given priority is included in the current level mask.
  *
  * @param integer   $priority   The priority to check.
  *
  * @return boolean  True if the given priority is included in the current
  *                  log mask.
  *
  * @access  private
  * @since   Log 1.7.0
  */
 function _isMasked($priority)
 {
     return vmLog::MASK($priority) & $this->_mask;
 }