Spaces:
Build error
Build error
| package logger | |
| import ( | |
| "context" | |
| "encoding/json" | |
| "fmt" | |
| "io" | |
| "log" | |
| "one-api/common" | |
| "os" | |
| "path/filepath" | |
| "sync" | |
| "time" | |
| "github.com/bytedance/gopkg/util/gopool" | |
| "github.com/gin-gonic/gin" | |
| ) | |
| const ( | |
| loggerINFO = "INFO" | |
| loggerWarn = "WARN" | |
| loggerError = "ERR" | |
| loggerDebug = "DEBUG" | |
| ) | |
| const maxLogCount = 1000000 | |
| var logCount int | |
| var setupLogLock sync.Mutex | |
| var setupLogWorking bool | |
| func SetupLogger() { | |
| defer func() { | |
| setupLogWorking = false | |
| }() | |
| if *common.LogDir != "" { | |
| ok := setupLogLock.TryLock() | |
| if !ok { | |
| log.Println("setup log is already working") | |
| return | |
| } | |
| defer func() { | |
| setupLogLock.Unlock() | |
| }() | |
| logPath := filepath.Join(*common.LogDir, fmt.Sprintf("oneapi-%s.log", time.Now().Format("20060102150405"))) | |
| fd, err := os.OpenFile(logPath, os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0644) | |
| if err != nil { | |
| log.Fatal("failed to open log file") | |
| } | |
| gin.DefaultWriter = io.MultiWriter(os.Stdout, fd) | |
| gin.DefaultErrorWriter = io.MultiWriter(os.Stderr, fd) | |
| } | |
| } | |
| func LogInfo(ctx context.Context, msg string) { | |
| logHelper(ctx, loggerINFO, msg) | |
| } | |
| func LogWarn(ctx context.Context, msg string) { | |
| logHelper(ctx, loggerWarn, msg) | |
| } | |
| func LogError(ctx context.Context, msg string) { | |
| logHelper(ctx, loggerError, msg) | |
| } | |
| func LogDebug(ctx context.Context, msg string) { | |
| if common.DebugEnabled { | |
| logHelper(ctx, loggerDebug, msg) | |
| } | |
| } | |
| func logHelper(ctx context.Context, level string, msg string) { | |
| writer := gin.DefaultErrorWriter | |
| if level == loggerINFO { | |
| writer = gin.DefaultWriter | |
| } | |
| id := ctx.Value(common.RequestIdKey) | |
| if id == nil { | |
| id = "SYSTEM" | |
| } | |
| now := time.Now() | |
| _, _ = fmt.Fprintf(writer, "[%s] %v | %s | %s \n", level, now.Format("2006/01/02 - 15:04:05"), id, msg) | |
| logCount++ // we don't need accurate count, so no lock here | |
| if logCount > maxLogCount && !setupLogWorking { | |
| logCount = 0 | |
| setupLogWorking = true | |
| gopool.Go(func() { | |
| SetupLogger() | |
| }) | |
| } | |
| } | |
| func LogQuota(quota int) string { | |
| if common.DisplayInCurrencyEnabled { | |
| return fmt.Sprintf("$%.6f 额度", float64(quota)/common.QuotaPerUnit) | |
| } else { | |
| return fmt.Sprintf("%d 点额度", quota) | |
| } | |
| } | |
| func FormatQuota(quota int) string { | |
| if common.DisplayInCurrencyEnabled { | |
| return fmt.Sprintf("$%.6f", float64(quota)/common.QuotaPerUnit) | |
| } else { | |
| return fmt.Sprintf("%d", quota) | |
| } | |
| } | |
| // LogJson 仅供测试使用 only for test | |
| func LogJson(ctx context.Context, msg string, obj any) { | |
| jsonStr, err := json.Marshal(obj) | |
| if err != nil { | |
| LogError(ctx, fmt.Sprintf("json marshal failed: %s", err.Error())) | |
| return | |
| } | |
| LogInfo(ctx, fmt.Sprintf("%s | %s", msg, string(jsonStr))) | |
| } | |