Elgg\LoggerTest::testLoggingOff PHP Method

testLoggingOff() public method

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