diff options
author | Chocobozzz <me@florianbigard.com> | 2021-08-26 15:28:51 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-08-26 15:28:51 +0200 |
commit | 095094872a61ae534c115135c0789a73c741d704 (patch) | |
tree | e83d3c250ab9e2f0883f67b232a4a1ed91c9186d /server | |
parent | 0bae66632a8767f3d5aca080af314bcab56e1889 (diff) | |
download | PeerTube-095094872a61ae534c115135c0789a73c741d704.tar.gz PeerTube-095094872a61ae534c115135c0789a73c741d704.tar.zst PeerTube-095094872a61ae534c115135c0789a73c741d704.zip |
Remove too much log for webtorrent download
Diffstat (limited to 'server')
-rw-r--r-- | server/helpers/webtorrent.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/helpers/webtorrent.ts b/server/helpers/webtorrent.ts index 5fe4c1165..bea76a46f 100644 --- a/server/helpers/webtorrent.ts +++ b/server/helpers/webtorrent.ts | |||
@@ -50,7 +50,7 @@ async function downloadWebTorrentVideo (target: { magnetUri: string, torrentName | |||
50 | .then(() => rej(new Error('Cannot import torrent ' + torrentId + ': there are multiple files in it'))) | 50 | .then(() => rej(new Error('Cannot import torrent ' + torrentId + ': there are multiple files in it'))) |
51 | } | 51 | } |
52 | 52 | ||
53 | logger.debug('Got torrent from webtorrent %s.', id, { infoHash: torrent.infoHash, files: torrent.files }) | 53 | logger.debug('Got torrent from webtorrent %s.', id, { infoHash: torrent.infoHash }) |
54 | 54 | ||
55 | file = torrent.files[0] | 55 | file = torrent.files[0] |
56 | 56 | ||