(PECL mongo >= 1.2.3)
MongoLog::getLevel — Gets the level(s) currently being logged
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.