From 5e08989ede1a340b9edb94465a11b1e04bf24094 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Thu, 3 Jun 2021 17:12:38 +0200 Subject: Add tags to AP rate logger --- server/lib/activitypub/video-rates.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/server/lib/activitypub/video-rates.ts b/server/lib/activitypub/video-rates.ts index 0eec806f9..53ae1780b 100644 --- a/server/lib/activitypub/video-rates.ts +++ b/server/lib/activitypub/video-rates.ts @@ -3,7 +3,7 @@ import { Transaction } from 'sequelize' import { doJSONRequest } from '@server/helpers/requests' import { VideoRateType } from '../../../shared/models/videos' import { checkUrlsSameHost, getAPId } from '../../helpers/activitypub' -import { logger } from '../../helpers/logger' +import { logger, loggerTagsFactory } from '../../helpers/logger' import { CRAWL_REQUEST_CONCURRENCY } from '../../initializers/constants' import { AccountVideoRateModel } from '../../models/account/account-video-rate' import { MAccountActor, MActorUrl, MVideo, MVideoAccountLight, MVideoId } from '../../types/models' @@ -12,12 +12,14 @@ import { sendLike, sendUndoDislike, sendUndoLike } from './send' import { sendDislike } from './send/send-dislike' import { getVideoDislikeActivityPubUrlByLocalActor, getVideoLikeActivityPubUrlByLocalActor } from './url' +const lTags = loggerTagsFactory('ap', 'video-rate', 'create') + async function createRates (ratesUrl: string[], video: MVideo, rate: VideoRateType) { await Bluebird.map(ratesUrl, async rateUrl => { try { await createRate(rateUrl, video, rate) } catch (err) { - logger.warn('Cannot add rate %s.', rateUrl, { err }) + logger.warn('Cannot add rate %s.', rateUrl, { err, ...lTags(rateUrl, video.uuid, video.url) }) } }, { concurrency: CRAWL_REQUEST_CONCURRENCY }) } -- cgit v1.2.3