events: fix created events only being logged as debug level

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2022-04-14 22:37:30 +02:00
parent f4f9f525d7
commit a3bb5d89cc
1 changed files with 1 additions and 1 deletions

View File

@ -261,7 +261,7 @@ class Event(ExpiringModel):
def save(self, *args, **kwargs): def save(self, *args, **kwargs):
if self._state.adding: if self._state.adding:
LOGGER.debug( LOGGER.info(
"Created Event", "Created Event",
action=self.action, action=self.action,
context=self.context, context=self.context,