Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for outputLevel (2.08 sec)

  1. pkg/log/config.go

    func updateScopes(options *Options) error {
    	// snapshot what's there
    	allScopes := Scopes()
    
    	// Join defaultOutputLevels and outputLevels
    	levels := options.defaultOutputLevels
    	if levels == "" {
    		levels = options.outputLevels
    	} else if options.outputLevels != "" {
    		levels = levels + "," + options.outputLevels
    	}
    
    	// update the output levels of all listed scopes
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. istioctl/pkg/admin/istiodconfig_test.go

    	switch request.Method {
    	case http.MethodGet:
    		_, _ = writer.Write([]byte(getResponse))
    	}
    }
    
    func adsHandler(writer http.ResponseWriter, request *http.Request) {
    	const getResponse = `{"name":"ads","description":"ads debugging","output_level":"info","stack_trace_level":"none","log_callers":false}`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top