added logging for user property creation
This commit is contained in:
parent
0d9dc90362
commit
5c4d2bd6a9
|
@ -201,6 +201,11 @@ class AddUserPropertyView(DashboardView, CreateView):
|
|||
form.instance.type = Property.Type.USER
|
||||
|
||||
messages.success(self.request, _("User property successfully added."))
|
||||
|
||||
device_logger.info(
|
||||
f"Created user property (key='{form.instance.key}', value='{form.instance.value}') by user {self.request.user}, for evidence uuid: {self.property.uuid}."
|
||||
)
|
||||
|
||||
response = super().form_valid(form)
|
||||
return response
|
||||
|
||||
|
|
Loading…
Reference in a new issue