List expiration: use same log level as when setting

And log this event to the &SERVER channel, too.
This commit is contained in:
Alexander Barton 2016-12-08 00:20:36 +01:00
parent 85df414907
commit d0d4de4980
1 changed files with 2 additions and 2 deletions

View File

@ -381,11 +381,11 @@ Lists_Expire(struct list_head *h, const char *ListName)
if (e->valid_until > 0 && e->valid_until < now) {
/* Entry is expired, delete it */
if (e->reason)
Log(LOG_INFO,
Log(LOG_NOTICE|LOG_snotice,
"Deleted \"%s\" (\"%s\") from %s list (expired).",
e->mask, e->reason, ListName);
else
Log(LOG_INFO,
Log(LOG_NOTICE|LOG_snotice,
"Deleted \"%s\" from %s list (expired).",
e->mask, ListName);
Lists_Unlink(h, last, e);