Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for splitComponentLog (0.22 sec)

  1. pkg/envoy/proxy.go

    	}
    	return &envoy{
    		ProxyConfig: cfg,
    		extraArgs:   args,
    	}
    }
    
    // splitComponentLog breaks down an argument string into a log level (ie "info") and component log levels (ie "misc:error").
    // This allows using a single log level API, with the same semantics as Istio's logging, to configure Envoy which
    // has two different settings
    func splitComponentLog(level string) (string, []string) {
    	levels := strings.Split(level, ",")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top