command: remove unused logOutput field
This commit is contained in:
parent
823295fe2a
commit
7064dfbfba
|
@ -3,7 +3,6 @@ package agent
|
||||||
import (
|
import (
|
||||||
"flag"
|
"flag"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
|
||||||
"os"
|
"os"
|
||||||
"os/signal"
|
"os/signal"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
@ -59,7 +58,6 @@ type cmd struct {
|
||||||
versionHuman string
|
versionHuman string
|
||||||
shutdownCh <-chan struct{}
|
shutdownCh <-chan struct{}
|
||||||
flagArgs config.Flags
|
flagArgs config.Flags
|
||||||
logOutput io.Writer
|
|
||||||
logger hclog.InterceptLogger
|
logger hclog.InterceptLogger
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -205,7 +203,6 @@ func (c *cmd) run(args []string) int {
|
||||||
if !ok {
|
if !ok {
|
||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
c.logOutput = logOutput
|
|
||||||
|
|
||||||
c.logger = logger
|
c.logger = logger
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,6 @@ package proxy
|
||||||
import (
|
import (
|
||||||
"flag"
|
"flag"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
|
||||||
"log"
|
"log"
|
||||||
"net"
|
"net"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
@ -43,7 +42,6 @@ type cmd struct {
|
||||||
|
|
||||||
shutdownCh <-chan struct{}
|
shutdownCh <-chan struct{}
|
||||||
|
|
||||||
logOutput io.Writer
|
|
||||||
logger hclog.Logger
|
logger hclog.Logger
|
||||||
|
|
||||||
// flags
|
// flags
|
||||||
|
@ -138,12 +136,10 @@ func (c *cmd) Run(args []string) int {
|
||||||
Name: logging.Proxy,
|
Name: logging.Proxy,
|
||||||
LogJSON: c.logJSON,
|
LogJSON: c.logJSON,
|
||||||
}
|
}
|
||||||
logger, logGate, logOutput, ok := logging.Setup(logConfig, c.UI)
|
logger, logGate, _, ok := logging.Setup(logConfig, c.UI)
|
||||||
if !ok {
|
if !ok {
|
||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
c.logOutput = logOutput
|
|
||||||
|
|
||||||
c.logger = logger
|
c.logger = logger
|
||||||
|
|
||||||
// Enable Pprof if needed
|
// Enable Pprof if needed
|
||||||
|
|
Loading…
Reference in New Issue