- Issue created by @loze
- Merge request !12Log messages from users without 'access devel information' permission β (Open) created by loze
- πΊπΈUnited States loze Los Angeles
This small change gets it to work, thanks.
when calling ddl() the message is not logged if the acting user does not have the ''access devel information' permission.
ddl() calls \Drupal::service('devel.dumper')->dump($message);
Which in turn relies on the permission 'access devel information'
to generate the message.
This makes sense for the devel module itself, but here we want to still log the message even if the actiing user cant view the message.
Create a function in this module that can log the message without a permission check.
Active
2.0
Code
This small change gets it to work, thanks.