- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for etcdLogIf (0.17 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
cmd/etcd.go
} _, err := client.Put(timeoutCtx, key, string(data)) etcdLogIf(ctx, err) return etcdErrToErr(err, client.Endpoints()) } func deleteKeyEtcd(ctx context.Context, client *etcd.Client, key string) error { timeoutCtx, cancel := context.WithTimeout(ctx, defaultContextTimeout) defer cancel() _, err := client.Delete(timeoutCtx, key) etcdLogIf(ctx, err) return etcdErrToErr(err, client.Endpoints()) }
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Thu Apr 04 12:04:40 GMT 2024 - 2.9K bytes - Click Count (0) -
cmd/logging.go
logger.LogOnceIf(ctx, "decom", err, id, errKind...) } func decomLogEvent(ctx context.Context, msg string, args ...any) { logger.Event(ctx, "decom", msg, args...) } func etcdLogIf(ctx context.Context, err error, errKind ...any) { logger.LogIf(ctx, "etcd", err, errKind...) } func etcdLogOnceIf(ctx context.Context, err error, id string, errKind ...any) {
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 6.8K bytes - Click Count (0)