diff options
Diffstat (limited to 'server')
-rw-r--r-- | server/controllers/tracker.ts | 2 |
1 files changed, 1 insertions, 1 deletions
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({ | |||
53 | const playlistExists = await VideoStreamingPlaylistModel.doesInfohashExist(infoHash) | 53 | const playlistExists = await VideoStreamingPlaylistModel.doesInfohashExist(infoHash) |
54 | if (playlistExists === true) return cb() | 54 | if (playlistExists === true) return cb() |
55 | 55 | ||
56 | return cb(new Error(`Unknown infoHash ${infoHash}`)) | 56 | return cb(new Error(`Unknown infoHash ${infoHash} requested by ip ${ip}`)) |
57 | } catch (err) { | 57 | } catch (err) { |
58 | logger.error('Error in tracker filter.', { err }) | 58 | logger.error('Error in tracker filter.', { err }) |
59 | return cb(err) | 59 | return cb(err) |