Remove debug println

This commit is contained in:
Caleb Gardner
2021-09-18 03:10:53 -05:00
parent 1d84a55e4f
commit e0646abf19
-2
View File
@@ -3,7 +3,6 @@ package main
import (
"bufio"
"errors"
"fmt"
"io"
"log"
"net"
@@ -84,7 +83,6 @@ func link(port int, addr string, failChan chan int) {
func parseConf() (links map[int]string, err error) {
conf, err := os.Open("/etc/darkstorm-server.conf")
if os.IsNotExist(err) {
fmt.Println("HII")
return nil, nil
} else if err != nil {
return nil, err