Log listen address

Signed-off-by: vinceh121 <contact@vinceh121.me>
This commit is contained in:
vinceh121 2021-05-19 11:48:58 +02:00
parent b5a33d2e42
commit bbe7c8b858
No known key found for this signature in database
GPG Key ID: 69B0B7194860F4D1

View File

@ -70,7 +70,7 @@ class Server(address: String, port: Int, captcha: Captcha) {
}
def start(): Unit = {
println("Starting server on port:" + port)
println("Starting server on " + address + ":" + port)
server.start()
}
}