summaryrefslogtreecommitdiff
path: root/src/queue/processors
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2019-03-09 10:10:24 +0900
committersyuilo <syuilotan@yahoo.co.jp>2019-03-09 10:10:24 +0900
commit606e46e4d77c1f000452f4015993c7515543b4de (patch)
tree4322c701a5426e87584e045348c527dbbbec02cb /src/queue/processors
parentMerge branch 'develop' of https://github.com/syuilo/misskey into develop (diff)
downloadsharkey-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.ts2
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;
}