Hey,
Is there anything else than adding monolor.services.yml to container-yamls array in settings.php?
This is my service definition:
parameters:
monolog.channel_handlers:
default:
- default_handler
- drupal.dblog
monolog.processors:
- ...
...
services:
monolog.handler.default_handler:
class: Monolog\Handler\RotatingFileHandler
arguments: ['/tmp/drupal.log', 10, '100']
With this setup, I'm expecting that log entries are recorded to /tmp/drupal.log (rotated) but also in the watchdog table. But watchdog is empty
Closed: works as designed
2.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Hey,
Is there anything else than adding monolor.services.yml to container-yamls array in settings.php?