- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for bootLogOnceIf (0.1 sec)
-
cmd/logging.go
logger.LogOnceIf(ctx, "batch", err, id, errKind...) } func bootLogIf(ctx context.Context, err error, errKind ...interface{}) { logger.LogIf(ctx, "bootstrap", err, errKind...) } func bootLogOnceIf(ctx context.Context, err error, id string, errKind ...interface{}) { logger.LogOnceIf(ctx, "bootstrap", err, id, errKind...) } func dnsLogIf(ctx context.Context, err error, errKind ...interface{}) {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Jul 03 18:49:48 UTC 2024 - 7.1K bytes - Viewed (0) -
cmd/bootstrap-peer-server.go
err := clnt.Verify(ctx, srcCfg) mu.Lock() if err != nil { bootstrapTraceMsg(fmt.Sprintf("bootstrapVerify: %v, endpoint: %s", err, clnt)) if !isNetworkError(err) { bootLogOnceIf(context.Background(), fmt.Errorf("%s has incorrect configuration: %w", clnt, err), "incorrect_"+clnt.String()) incorrectConfigs = append(incorrectConfigs, fmt.Errorf("%s has incorrect configuration: %w", clnt, err))
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 01 22:13:18 UTC 2024 - 8.4K bytes - Viewed (0)