diff --git a/files/helpers/actions.py b/files/helpers/actions.py index cbe362e2e2..d36d3e10c0 100644 --- a/files/helpers/actions.py +++ b/files/helpers/actions.py @@ -456,7 +456,7 @@ def execute_under_siege(v:User, target:Optional[Union[Submission, Comment]], bod v.is_muted = True g.db.add(v) t = time.strftime("%Y-%m-%d %H:%M:%S", time.gmtime(time.time())) - log_file(f"[{t}] {v.id} @{v.username} {type} {v.age}s") + log_file(f"[{t}] {v.id} @{v.username} {type} {v.age}s", "under_siege.log") discord_message_send(UNDER_SIEGE_CHANNEL_ID, f"<{SITE_FULL}/id/{v.id}> `@{v.username} {type} {v.age}s`") return False