- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for scannerLogIf (0.04 sec)
-
cmd/data-usage.go
attempts := 1 for dataUsageInfo := range dui { json := jsoniter.ConfigCompatibleWithStandardLibrary dataUsageJSON, err := json.Marshal(dataUsageInfo) if err != nil { scannerLogIf(ctx, err) continue } if attempts > 10 { saveConfig(ctx, objAPI, dataUsageObjNamePath+".bkp", dataUsageJSON) // Save a backup every 10th update. attempts = 1 }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu May 09 00:51:34 UTC 2024 - 5.6K bytes - Viewed (0) -
cmd/logging.go
} func configLogOnceConsoleIf(ctx context.Context, err error, id string, errKind ...any) { logger.LogOnceConsoleIf(ctx, "config", err, id, errKind...) } func scannerLogIf(ctx context.Context, err error, errKind ...any) { logger.LogIf(ctx, "scanner", err, errKind...) } func scannerLogOnceIf(ctx context.Context, err error, id string, errKind ...any) {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 6.8K bytes - Viewed (0)