Logging ip requesting unknown infoHash
authorJohn Livingston <git@john-livingston.fr>
Fri, 12 Jun 2020 09:04:52 +0000 (11:04 +0200)
committerChocobozzz <chocobozzz@cpy.re>
Mon, 15 Jun 2020 13:43:11 +0000 (15:43 +0200)
server/controllers/tracker.ts

index 4f756fc0a3e4a5e4193b49ea0d04739d9109a59c..cacff36ecb82a6e7e870f9705642f6b0293212bc 100644 (file)
@@ -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)