Elgg\LoggerTest::testLoggingOff PHP 메소드

testLoggingOff() 공개 메소드

public testLoggingOff ( )
    public function testLoggingOff()
    {
        $logger = $this->getLoggerInstance();
        $logger->setLevel(\Elgg\Logger::OFF);
        $this->assertFalse($logger->log("hello"));
    }