Skip to content

Commit d28c3da

Browse files
committedSep 8, 2022
Change log to fmt for a couple of messages
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>
1 parent 9348cb9 commit d28c3da

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎main.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,12 @@ func forward(name, from string, to []string) error {
7070
seed := time.Now().UnixNano()
7171
rand.Seed(seed)
7272

73+
fmt.Printf("Listening on: %s\n", from)
7374
l, err := net.Listen("tcp", from)
7475
if err != nil {
7576
return fmt.Errorf("error listening on %s %s", from, err.Error())
7677
}
77-
log.Printf("listening on %s", from)
78+
7879
for {
7980
conn, err := l.Accept()
8081
if err != nil {

0 commit comments

Comments
 (0)
Please sign in to comment.