From 1c455caec601259d67ba93b63f0878011936e7d1 Mon Sep 17 00:00:00 2001 From: DIYgod Date: Tue, 2 Apr 2024 01:05:40 +0800 Subject: [PATCH] feat(bilibili): add cookie debug --- lib/routes/bilibili/cache.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/routes/bilibili/cache.ts b/lib/routes/bilibili/cache.ts index f2dfc3349..86699ef7e 100644 --- a/lib/routes/bilibili/cache.ts +++ b/lib/routes/bilibili/cache.ts @@ -26,6 +26,7 @@ const getCookie = () => { }); await page.goto('https://space.bilibili.com/1/dynamic'); const cookieString = await waitForRequest; + logger.debug(`Got bilibili cookie: ${cookieString}`); return cookieString; });