add caller info & stdout

master v0.0.9
guohao 5 years ago
parent 7b4d1aa0c8
commit 30ebfcaf4f
  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("%-15s:%03d:%s", file, line, path.Base(runtime.FuncForPC(pc).Name())) context = fmt.Sprintf("%10s:%03d::%s", file, line, path.Base(runtime.FuncForPC(pc).Name()))
}else{ }else{
context = fmt.Sprintf("%-15s:%03d:%s", path.Base(file), line, path.Base(runtime.FuncForPC(pc).Name())) context = fmt.Sprintf("%10s:%03d::%s", path.Base(file), line, path.Base(runtime.FuncForPC(pc).Name()))
} }
return fmt.Sprintf("%s\t[%5s]\t%s %s \n", time.Now().Format("2006-01-02 15:04:05.999"), getLevelName(level), context, msg) return fmt.Sprintf("%s\t[%3s]\t%s\t%s\n", time.Now().Format("2006-01-02 15:04:05.999"), getLevelName(level), context, msg)
} else { } else {
return fmt.Sprintf("%s\t[%5s]\t%s \n", time.Now().Format("2006-01-02 15:04:05.999"), getLevelName(level), msg) return fmt.Sprintf("%s\t[%3s]\t%s\n", time.Now().Format("2006-01-02 15:04:05.999"), getLevelName(level), msg)
} }
} }

Loading…
Cancel
Save