Jump to content

prevent system logs for user role


Spica
 Share

Recommended Posts

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
Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

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