add caller info & stdout

master v0.0.8
guohao 5 years ago
parent 7c2b576164
commit 7b4d1aa0c8
  1. 8
      gokit.go

@ -106,13 +106,13 @@ func format(level Level, msg string) string {
) )
pc, file, line, _ = runtime.Caller(3) pc, file, line, _ = runtime.Caller(3)
if withCaller == FullPATH { if withCaller == FullPATH {
context = fmt.Sprintf("%s:%d(%s)", file, line, path.Base(runtime.FuncForPC(pc).Name())) context = fmt.Sprintf("%-15s:%03d:%s", file, line, path.Base(runtime.FuncForPC(pc).Name()))
}else{ }else{
context = fmt.Sprintf("%s:%d(%s)", path.Base(file), line, path.Base(runtime.FuncForPC(pc).Name())) context = fmt.Sprintf("%-15s:%03d:%s", path.Base(file), line, path.Base(runtime.FuncForPC(pc).Name()))
} }
return fmt.Sprintf("%s [%s] %s %s \n", time.Now().Format("2006-01-02 15:04:05.999"), getLevelName(level), context, msg) return fmt.Sprintf("%s\t[%5s]\t%s %s \n", time.Now().Format("2006-01-02 15:04:05.999"), getLevelName(level), context, msg)
} else { } else {
return fmt.Sprintf("%s [%s] %s \n", time.Now().Format("2006-01-02 15:04:05.999"), getLevelName(level), msg) return fmt.Sprintf("%s\t[%5s]\t%s \n", time.Now().Format("2006-01-02 15:04:05.999"), getLevelName(level), msg)
} }
} }

Loading…
Cancel
Save