gookit/slog

日志时间有问题

opdays opened this issue · 2 comments

System (please complete the following information):

  • OS: windows
  • GO Version: 1.16
  • Pkg Version: master

日志时间有问题

A clear and concise description of what the bug is.

To Reproduce

package main

import (
	"github.com/gookit/slog"
	"testing"
	"time"
)

func TestLog(t *testing.T) {
	count := 0
	for {
		slog.Infof("info log %d",count)
		time.Sleep(time.Second)
		count++
	}
}

Expected behavior

A clear and concise description of what you expected to happen.

Screenshots
image

If applicable, add screenshots to help explain your problem.

Additional context

Add any other context about the problem here.

感谢报告! 我看看

已经修复了,打了新tag 😃