Search code examples
symfonysymfony-2.2monolog

Composer.phar update now results in an ErrorException for MonologBundle


symfony/symfony v2.2.0
monolog/monolog v1.4.1

After running composer.phar update yesterday, monolog was updated; running the same command today results in the following error message:

Loading composer repositories with package information
Updating dependencies (including require-dev)
Generating autoload files

  [ErrorException]
  Warning: constant(): Couldn't find constant Monolog\Logger::DEBUG in [path]\vendor\symfony\monolog-bundle\Symfony\Bundle\MonologBundle\DependencyInjection\MonologExtension.php line 109

The (i think) relevant part of config_dev.yml

monolog:
    handlers:
        main:
            type:  stream
            path:  %kernel.logs_dir%/%kernel.environment%.log
            level: debug
        firephp:
            type:  firephp
            level: info

Did something change that requires additional configuration, or is something else happening ?


Solution

  • Sounds like the update didn't go well - do you have a Logger class in vendor/monolog/monolog/src/Monolog/Logger.php? If not I would suggest deleting the vendor/monolog dir and running composer install to get it back.