[Fixed]-Django EventLog: Passing in current user

1👍

The save method will only know what has been passed into it, this will normally not include the request which is where you would get the current user (request.user).

You should instead add logging in the view which is calling the save method.

user = request.user

Leave a comment