Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Errorln (0.19 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/etcd3/logger.go

    	klog.WarningDepth(klogWrapperDepth, fmt.Sprintf(format, args...))
    }
    
    func (klogWrapper) Error(args ...interface{}) {
    	klog.ErrorDepth(klogWrapperDepth, args...)
    }
    
    func (klogWrapper) Errorln(args ...interface{}) {
    	klog.ErrorDepth(klogWrapperDepth, fmt.Sprintln(args...))
    }
    
    func (klogWrapper) Errorf(format string, args ...interface{}) {
    	klog.ErrorDepth(klogWrapperDepth, fmt.Sprintf(format, args...))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 24 10:13:50 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/handler.go

    	for i := 2; ; i++ {
    		_, file, line, ok := rt.Caller(i)
    		if !ok {
    			break
    		}
    		buffer.WriteString(fmt.Sprintf("    %s:%d\r\n", file, line))
    	}
    	klog.Errorln(buffer.String())
    
    	headers := http.Header{}
    	if ct := w.Header().Get("Content-Type"); len(ct) > 0 {
    		headers.Set("Accept", ct)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 14 17:10:00 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top