diff --git a/log/log.go b/log/log.go index d4f0f81..80da362 100644 --- a/log/log.go +++ b/log/log.go @@ -14,26 +14,25 @@ var log *zap.SugaredLogger func init() { // default level: debug - Init("debug", "") + Init("debug", []string{"stdout"}) } -// Init the logger with defined level. errorsPath defines the file where to store the errors, if set to "" will not store errors. -func Init(levelStr, logPath string) { +// Init the logger with defined level. outputs defines the outputs where the +// logs will be sent. By default outputs contains "stdout", which prints the +// logs at the output of the process. To add a log file as output, the path +// should be added at the outputs array. To avoid printing the logs but storing +// them on a file, can use []string{"pathtofile.log"} +func Init(levelStr string, outputs []string) { var level zap.AtomicLevel err := level.UnmarshalText([]byte(levelStr)) if err != nil { panic(fmt.Errorf("Error on setting log level: %s", err)) } - outputPaths := []string{"stdout"} - if logPath != "" { - log.Infof("log file: %s", logPath) - outputPaths = append(outputPaths, logPath) - } cfg := zap.Config{ Level: level, Encoding: "console", - OutputPaths: outputPaths, + OutputPaths: outputs, ErrorOutputPaths: []string{"stderr"}, EncoderConfig: zapcore.EncoderConfig{ MessageKey: "message", @@ -64,8 +63,6 @@ func Init(levelStr, logPath string) { defer logger.Sync() withOptions := logger.WithOptions(zap.AddCallerSkip(1)) log = withOptions.Sugar() - - log.Infof("log level: %s", level) } func sprintStackTrace(st []tracerr.Frame) string { diff --git a/log/log_test.go b/log/log_test.go index 61471ee..467c64c 100644 --- a/log/log_test.go +++ b/log/log_test.go @@ -5,7 +5,7 @@ import ( ) func TestLog(t *testing.T) { - // Init("debug", "test.log") + // Init("error", []string{"stdout", "test.log"}) Info("Test log.Info", " value is ", 10) Infof("Test log.Infof %d", 10)