Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for LogKind (0.03 sec)

  1. internal/logger/logger.go

    }
    
    func buildLogEntry(ctx context.Context, subsystem, message string, trace []string, errKind ...any) log.Entry {
    	logKind := madmin.LogKindError
    	if len(errKind) > 0 {
    		if ek, ok := errKind[0].(madmin.LogKind); ok {
    			logKind = ek
    		}
    	}
    
    	req := GetReqInfo(ctx)
    	if req == nil {
    		req = &ReqInfo{
    			API:       "SYSTEM",
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 12.4K bytes
    - Viewed (0)
Back to top