本文整理汇总了PHP中Options::debug方法的典型用法代码示例。如果您正苦于以下问题:PHP Options::debug方法的具体用法?PHP Options::debug怎么用?PHP Options::debug使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Options
的用法示例。
在下文中一共展示了Options::debug方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: microtime
*/
require_once "lib/autoload.php";
$status = -1;
$elapsed = microtime(true);
try {
$config = dirname(__FILE__) . "/logmon.conf.php";
$requiredConfigs = array($config);
CheckConfig::configs($requiredConfigs);
require_once $config;
$requiredExtensions = array("mbstring", "pcre", "PDO");
CheckConfig::extensions($requiredExtensions);
mb_internal_encoding("UTF-8");
Options::setDebug(DEBUG || array_search("--debug", $argv));
Options::setPretend(array_search("--pretend", $argv));
Options::setVerbose(Options::debug() || Options::pretend() || array_search("--verbose", $argv));
Log::open(__FILE__, true, Options::verbose(), Options::debug());
Log::notice(sprintf("Running '%s'...", implode(" ", $argv)));
$monitor = Monitor::create(dirname(__FILE__) . "/monitor");
if ($monitor !== false) {
$sources = $monitor->getEnabledSources();
$dbh = new DBH(DBDSN, DBUSER, DBPASS);
$processor = new Processor($dbh);
foreach ($sources as $source) {
$processor->process($monitor, $source);
}
$processor->discard(EVENT_DISCARD_THRESHOLD);
$status = 0;
} else {
$status = 1;
}
} catch (Exception $e) {
示例2: matchAndUpdate
private function matchAndUpdate($lineTimestamp, $line)
{
$patterns = $this->tEvent->getPatterns();
$match = false;
if (preg_match($patterns[$this->tNextPatternIndex], $line, $matches) === 1) {
$this->tNextPatternIndex++;
$match = true;
} elseif ($this->tNextPatternIndex > 0 && preg_match($patterns[0], $line, $matches) === 1) {
$this->reset();
$this->tNextPatternIndex = 1;
$match = true;
}
$matchCount = 0;
if ($match) {
if (count($matches) > 0) {
$this->tMatches = array_merge($this->tMatches, array_slice($matches, 1));
}
$this->tMatchedLines[] = $line;
if ($this->tNextPatternIndex == 1) {
$this->tMatchedTimestamp = $lineTimestamp;
}
if ($this->tNextPatternIndex == count($patterns)) {
$this->tMatchedLoghost = $this->applyLoghostEvaluator();
$this->tMatchedService = $this->applyServiceEvaluator();
$this->tMatchedHostip = $this->applyHostipEvaluator();
$this->tMatchedHostmac = $this->applyHostmacEvaluator();
$this->tMatchedUser = $this->applyUserEvaluator();
if (!$this->isEmpty()) {
if (!$this->isErroneous()) {
if (Options::pretend() || Options::debug()) {
Log::info("Found event '{$this}'");
$matchedLineIndex = 0;
foreach ($this->tMatchedLines as $matchedLine) {
Log::debug("line[{$matchedLineIndex}] '{$matchedLine}'");
$matchedLineIndex++;
}
}
$this->update();
$matchCount = 1;
} else {
Log::debug("Ignoring line '{$line}' due to erroneous event '{$this}'");
}
} else {
Log::debug("Ignoring line '{$line}' due to empty event '{$this}'");
}
$this->reset();
}
}
return $matchCount;
}
示例3: WebViewUsers
$access = new WebViewUsers($dbh);
break;
case "viewuser":
$access = new WebViewUser($dbh);
break;
case "viewevents":
$access = new WebViewEvents($dbh);
break;
case "viewabout":
$access = new WebViewAbout($dbh);
break;
case "streamlogs":
$access = new WebStreamLogs($dbh);
break;
default:
$access = new WebViewServices($dbh);
}
} catch (Exception $e) {
Log::err($e);
Log::close();
if (Options::debug()) {
WebAccess::reportExceptionAndExit($e);
} else {
WebAccess::sendStatusAndExit(WebAccess::STATUS_SERVICE_UNAVAILABLE);
}
}
$access->sendResponse();
if (isset($dbh)) {
$dbh->close();
}
Log::close();