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 /server.ts | |
parent | 4f20856ed4d7f5bc0e85ad40b58af8014dba48db (diff) | |
download | PeerTube-c2b823826db167594f8157b0b324b6fb1559caeb.tar.gz PeerTube-c2b823826db167594f8157b0b324b6fb1559caeb.tar.zst PeerTube-c2b823826db167594f8157b0b324b6fb1559caeb.zip |
Log RTMP server error (address already in use)
Diffstat (limited to 'server.ts')
-rw-r--r-- | server.ts | 2 |
1 files changed, 1 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') |