aboutsummaryrefslogtreecommitdiffhomepage
path: root/server.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-01-11 09:33:14 +0100
committerChocobozzz <me@florianbigard.com>2021-01-11 09:33:14 +0100
commitc2b823826db167594f8157b0b324b6fb1559caeb (patch)
tree291b4b18c9539a77a68554f9462ff348341277ff /server.ts
parent4f20856ed4d7f5bc0e85ad40b58af8014dba48db (diff)
downloadPeerTube-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.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/server.ts b/server.ts
index edfbab3d7..e674a09d4 100644
--- a/server.ts
+++ b/server.ts
@@ -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')