getLevel() публичный статический Метод

This can be used to see the log level. Use the constants described in the MongoLog section with bitwise operators to check the level.
public static getLevel ( ) : integer
Результат integer Returns the current level
Пример #1
0
 public function testLevel()
 {
     \MongoLog::setLevel(2);
     $this->assertSame(2, \MongoLog::getLevel(2));
 }