Contao\CoreBundle\Test\Monolog\ContaoTableHandlerTest::testNotHandlingLogLevel PHP Method

testNotHandlingLogLevel() public method

Tests that the handler does nothing if the log level does not match.
    public function testNotHandlingLogLevel()
    {
        $handler = new ContaoTableHandler();
        $handler->setLevel(Logger::INFO);
        $this->assertFalse($handler->handle(['level' => Logger::DEBUG]));
    }