略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: MongoLog::getLevel

2024-05-02

MongoLog::getLevel

(PECL mongo >= 1.2.3)

MongoLog::getLevelGets the level(s) currently being logged

说明

public static MongoLog::getLevel ( void ) : int

This function can be used to see which log levels are currently enabled. The returned integer may be compared with the MongoLog level constants using bitwise operators to check for specific log levels.

<?php

if (MongoLog::getLevel() & MongoLog::FINE) {
    echo 
"lots of logs\n";
}

if (
MongoLog::getLevel() ^ MongoLog::NONE) {
    echo 
"logging, at least a little\n";
}

if (
MongoLog::getLevel() == MongoLog::ALL) {
    echo 
"logging at the highest levels\n";
}

?>

参数

此函数没有参数。

返回值

Returns the level(s) currently being logged.

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/mongolog.getlevel.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3