diff options
author | Chocobozzz <me@florianbigard.com> | 2021-01-11 09:33:14 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-01-11 09:33:14 +0100 |
commit | c2b823826db167594f8157b0b324b6fb1559caeb (patch) | |
tree | 291b4b18c9539a77a68554f9462ff348341277ff | |
parent | 4f20856ed4d7f5bc0e85ad40b58af8014dba48db (diff) | |
download | PeerTube-c2b823826db167594f8157b0b324b6fb1559caeb.tar.gz PeerTube-c2b823826db167594f8157b0b324b6fb1559caeb.tar.zst PeerTube-c2b823826db167594f8157b0b324b6fb1559caeb.zip |
Log RTMP server error (address already in use)
-rw-r--r-- | server.ts | 2 | ||||
-rw-r--r-- | server/lib/live-manager.ts | 4 |
2 files changed, 5 insertions, 1 deletions
@@ -283,7 +283,7 @@ async function startApplication () { | |||
283 | 283 | ||
284 | // Make server listening | 284 | // Make server listening |
285 | server.listen(port, hostname, () => { | 285 | server.listen(port, hostname, () => { |
286 | logger.info('Server listening on %s:%d', hostname, port) | 286 | logger.info('HTTP server listening on %s:%d', hostname, port) |
287 | logger.info('Web server: %s', WEBSERVER.URL) | 287 | logger.info('Web server: %s', WEBSERVER.URL) |
288 | 288 | ||
289 | Hooks.runAction('action:application.listening') | 289 | Hooks.runAction('action:application.listening') |
diff --git a/server/lib/live-manager.ts b/server/lib/live-manager.ts index 379f61bdf..7f5fdf899 100644 --- a/server/lib/live-manager.ts +++ b/server/lib/live-manager.ts | |||
@@ -109,6 +109,10 @@ class LiveManager { | |||
109 | logger.info('Running RTMP server on port %d', config.rtmp.port) | 109 | logger.info('Running RTMP server on port %d', config.rtmp.port) |
110 | 110 | ||
111 | this.rtmpServer = new NodeRtmpServer(config) | 111 | this.rtmpServer = new NodeRtmpServer(config) |
112 | this.rtmpServer.tcpServer.on('error', err => { | ||
113 | logger.error('Cannot run RTMP server.', { err }) | ||
114 | }) | ||
115 | |||
112 | this.rtmpServer.run() | 116 | this.rtmpServer.run() |
113 | } | 117 | } |
114 | 118 | ||