From 5bc30c549316eed4c0c22c3b1bacf4a4f1f6e240 Mon Sep 17 00:00:00 2001 From: syuilo Date: Tue, 12 Mar 2019 13:12:49 +0900 Subject: [PATCH] Add log --- src/queue/processors/db/import-following.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/queue/processors/db/import-following.ts b/src/queue/processors/db/import-following.ts index b814908cb..9b8b9f961 100644 --- a/src/queue/processors/db/import-following.ts +++ b/src/queue/processors/db/import-following.ts @@ -45,6 +45,8 @@ export async function importFollowing(job: Bull.Job, done: any): Promise { target = await resolveUser(username, host); } + logger.info(`Follow ${target._id} ...`); + follow(user, target); }