# Register Bundle
If you're using Symfony Flex (opens new window), this step has been done automatically for you. If not, you can register the bundle yourself:
// config/bundles.php
return [
// Other bundles ...
EonX\EasyLogging\Bridge\Symfony\EasyLoggingSymfonyBundle::class => ['all' => true],
];
# Configuration
There is no required configuration, but if you want to specify a custom default channel you can do it.
# config/packages/easy_logging.yaml
easy_logging:
default_channel: 'my-channel'