Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for bluebird (0.18 sec)

  1. logger/logger.go

    	)
    
    	if config.Colorful {
    		infoStr = Green + "%s\n" + Reset + Green + "[info] " + Reset
    		warnStr = BlueBold + "%s\n" + Reset + Magenta + "[warn] " + Reset
    		errStr = Magenta + "%s\n" + Reset + Red + "[error] " + Reset
    		traceStr = Green + "%s\n" + Reset + Yellow + "[%.3fms] " + BlueBold + "[rows:%v]" + Reset + " %s"
    Go
    - Registered: Sun May 05 09:35:13 GMT 2024
    - Last Modified: Tue Nov 07 02:19:41 GMT 2023
    - 5.8K bytes
    - Viewed (0)
  2. internal/color/color.go

    	}()
    
    	YellowBold = func() func(format string, a ...interface{}) string {
    		if IsTerminal() {
    			return color.New(color.FgYellow, color.Bold).SprintfFunc()
    		}
    		return fmt.Sprintf
    	}()
    
    	BlueBold = func() func(format string, a ...interface{}) string {
    		if IsTerminal() {
    			return color.New(color.FgBlue, color.Bold).SprintfFunc()
    		}
    		return fmt.Sprintf
    	}()
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 17:57:52 GMT 2024
    - 3.8K bytes
    - Viewed (0)
Back to top