Contao\CoreBundle\Test\Monolog\ContaoTableHandlerTest::testNotHandlingLogLevel PHP Méthode

testNotHandlingLogLevel() public méthode

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]));
    }