diff --git a/server/controllers/tracker.ts b/server/controllers/tracker.ts index 4f756fc0a..cacff36ec 100644 --- a/server/controllers/tracker.ts +++ b/server/controllers/tracker.ts @@ -53,7 +53,7 @@ const trackerServer = new TrackerServer({ const playlistExists = await VideoStreamingPlaylistModel.doesInfohashExist(infoHash) if (playlistExists === true) return cb() - return cb(new Error(`Unknown infoHash ${infoHash}`)) + return cb(new Error(`Unknown infoHash ${infoHash} requested by ip ${ip}`)) } catch (err) { logger.error('Error in tracker filter.', { err }) return cb(err)