Spica Posted February 27, 2018 Share Posted February 27, 2018 How can I prevent system logs ( eg. sessions) for specific user roles? Link to comment Share on other sites More sharing options...
kixe Posted February 28, 2018 Share Posted February 28, 2018 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; } }); 4 Link to comment Share on other sites More sharing options...
Spica Posted February 28, 2018 Author Share Posted February 28, 2018 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? Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now