On Drupal 10, I have the following setting enabled in my settings.local.php. What is the equivalent in Backdrop please?
$config['system.logging']['error_level'] = 'verbose';
(I'm getting an error from EntityPlus, but I'm pretty sure the problem is in my custom module, and I need more info to find where the problem is.)
Thanks.
@leeksoup, you can try using Devel and going to
/admin/config/development/devel
and select Krumo backtrace in message area. This should print a backtrace (but not in the error log).As for the error, this is common in Entity Plus. It usually happens when you use a metadata wrapper, and try to get or set a property that was not defined. In this case, it looks like you are trying to get or set
taxonomy_state
, which is not defined anywhere. Where didtaxonomy_state
come from?