**List of steps to reproduce** (step by step, including full links if applicable):
* Create an private abusefilter that blocks creations and autocreations of usernames with certain pattern. Action of this abusefilter is warning and prevention.
Example filter rules:
```
(
action == 'createaccount'
| action == 'autocreateaccount'
)
& (
rx := "some pattern";
accountname irlike rx
)
```
* Set action on triggering to warning and prevention.
* Create local account (Special:CreateLocalAccount) for a global account which matches that pattern.
**What happens?**:
Creation is blocked by* Caught by the filter.
* Check abuse log and see the filter juslog (appearing as the account created.ting its local account, The first blocked trial is logged in abuse log. This log shows that the account matches the pattern, instead of the sysop, was creating the local account. If the sysop performs more such creations on the same account or other accounts that matches the pattern, actions will be blocked but **not logged** for some time (at least several minutes but not longer than 2 hours)instead of the sysop)
* Go to Special:CreateLocalAccount and create account for the same or other global accounts that matches the pattern.
* Caught by the filter again.
* Check abuse log and no new log occurs.
* Repeat the creation after 2 hours.
* Caught again but new log entry appears.
**What should have happened instead?**:
* Abuse logs for trials after the first trial should appear.
**Other information**:
Problem was first found on zhwiki ([[ https://zh.wikipedia.org/wiki/Special:AbuseFilter/194|AF194 ]]), then reproduced on wikidata.beta.wmflabs.org by User:Stang ([[ https://wikidata.beta.wmflabs.org/wiki/Special:AbuseFilter/3 | AF3 ]]).