Browse Source

Merge pull request #969 from gravitl/bugfix_v0.12.2_too_many_logs

removed annoying log
dcarns 3 years ago
parent
commit
f3599ba57f
2 changed files with 0 additions and 2 deletions
  1. 0 1
      main.go
  2. 0 1
      serverctl/iptables.go

+ 0 - 1
main.go

@@ -111,7 +111,6 @@ func initialize() { // Client Mode Prereq Check
 	if servercfg.ManageIPTables() != "off" {
 		if err = serverctl.InitIPTables(); err != nil {
 			logger.FatalLog("Unable to initialize iptables on host:", err.Error())
-
 		}
 	}
 

+ 0 - 1
serverctl/iptables.go

@@ -84,7 +84,6 @@ func setForwardPolicy() error {
 
 // port forward from an entry, can contain a dns name for lookup
 func iptablesPortForward(entry string, inport string, outport string, isIP bool) error {
-	logger.Log(2, "forwarding "+entry+" traffic from host port "+inport+" to container port "+outport)
 
 	var address string
 	if !isIP {