diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-03-09 10:10:24 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-03-09 10:10:24 +0900 |
| commit | 606e46e4d77c1f000452f4015993c7515543b4de (patch) | |
| tree | 4322c701a5426e87584e045348c527dbbbec02cb /src/queue/processors | |
| parent | Merge branch 'develop' of https://github.com/syuilo/misskey into develop (diff) | |
| download | sharkey-606e46e4d77c1f000452f4015993c7515543b4de.tar.gz sharkey-606e46e4d77c1f000452f4015993c7515543b4de.tar.bz2 sharkey-606e46e4d77c1f000452f4015993c7515543b4de.zip | |
Make info
Diffstat (limited to 'src/queue/processors')
| -rw-r--r-- | src/queue/processors/inbox.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/queue/processors/inbox.ts b/src/queue/processors/inbox.ts index 0e5b271eb7..436f3335c8 100644 --- a/src/queue/processors/inbox.ts +++ b/src/queue/processors/inbox.ts @@ -48,7 +48,7 @@ export default async (job: Bull.Job): Promise<void> => { // TODO: いちいちデータベースにアクセスするのはコスト高そうなのでどっかにキャッシュしておく const instance = await Instance.findOne({ host: host.toLowerCase() }); if (instance && instance.isBlocked) { - logger.warn(`Blocked request: ${host}`); + logger.info(`Blocked request: ${host}`); return; } |