Remove trailing ellipsis after displaying bound socket

This commit is contained in:
Seednode 2023-09-28 04:50:08 -05:00
parent c8dcc58c1a
commit 4d8b47a6e3
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ import (
)
const (
ReleaseVersion string = "1.0.0"
ReleaseVersion string = "1.0.1"
)
var (

View File

@ -443,7 +443,7 @@ func ServePage(args []string) error {
listenHost := net.JoinHostPort(Bind, strconv.Itoa(Port))
if Verbose {
fmt.Printf("%s | SERVE: Listening on %s...\n",
fmt.Printf("%s | SERVE: Listening on %s\n",
time.Now().Format(logDate),
listenHost,
)