Elgg\LoggerTest::testLoggingLevelTooLow PHP Method

testLoggingLevelTooLow() public method

    public function testLoggingLevelTooLow()
    {
        $logger = $this->getLoggerInstance();
        $logger->setLevel(\Elgg\Logger::WARNING);
        $this->assertFalse($logger->log("hello", \Elgg\Logger::NOTICE));
    }