aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--client/client.go13
1 files changed, 0 insertions, 13 deletions
diff --git a/client/client.go b/client/client.go
index 7a34c0f..b3283b8 100644
--- a/client/client.go
+++ b/client/client.go
@@ -25,7 +25,6 @@ import (
"errors"
"fmt"
"io"
- "log"
"net/rpc"
"os"
"os/exec"
@@ -53,17 +52,6 @@ func (c *Connection) Close() error {
return werr
}
-// If ECP Logging is enabled return true
-// Otherwise return false
-func enableECPLogging() bool {
- if os.Getenv("ENABLE_ENTERPRISE_CERTIFICATE_LOGS") != "" {
- return true
- }
-
- log.SetOutput(io.Discard)
- return false
-}
-
func init() {
gob.Register(crypto.SHA256)
gob.Register(&rsa.PSSOptions{})
@@ -131,7 +119,6 @@ var ErrCredUnavailable = errors.New("Cred is unavailable")
//
// The config file also specifies which certificate the signer should use.
func Cred(configFilePath string) (*Key, error) {
- enableECPLogging()
if configFilePath == "" {
configFilePath = util.GetDefaultConfigFilePath()
}