[VOL-2738]Enable configuration of ectd v3 client options

Change-Id: I75541525b3fd929adf6325f743def45c77e8930a
diff --git a/pkg/log/log.go b/pkg/log/log.go
index d0169bd..6b7087f 100644
--- a/pkg/log/log.go
+++ b/pkg/log/log.go
@@ -232,6 +232,10 @@
 	}
 }
 
+func ConstructZapConfig(outputType string, level LogLevel, fields Fields) zp.Config {
+	return getDefaultConfig(outputType, level, fields)
+}
+
 // SetLogger needs to be invoked before the logger API can be invoked.  This function
 // initialize the default logger (zap's sugaredlogger)
 func SetDefaultLogger(outputType string, level LogLevel, defaultFields Fields) (Logger, error) {