Jump to content

Recommended Posts

Posted

Put this in your ready.php (I'm not sure if this hook affects errors and exceptions too)

wire()->addHookBefore('WireLog::save', function($e) {
    if ($this->wire('user')->hasRole('superuser')) {
        $e->replace = true;
        $e->return = false;
    }
});  

 

  • Like 4
Posted

Great, kixe,

I did put it into a module. Works fine.

I have noticed, that loginerrors, eg caused by wrong pwd, are still logged, but with the user guest.

Can anyone give clearance about what this hook will cover and what not?

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...