Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for GroupValue (0.04 sec)

  1. logger/slog.go

    			Key:   "trace",
    			Value: slog.GroupValue(fields...),
    		})
    
    	case l.SlowThreshold != 0 && elapsed > l.SlowThreshold:
    		l.log(ctx, slog.LevelWarn, "SQL executed", slog.Attr{
    			Key:   "trace",
    			Value: slog.GroupValue(fields...),
    		})
    
    	case l.LogLevel >= Info:
    		l.log(ctx, slog.LevelInfo, "SQL executed", slog.Attr{
    			Key:   "trace",
    			Value: slog.GroupValue(fields...),
    		})
    	}
    }
    
    Registered: Sun Dec 28 09:35:17 UTC 2025
    - Last Modified: Thu Oct 30 10:56:26 UTC 2025
    - 2.9K bytes
    - Viewed (0)
Back to top