- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for sftpLogOnceIf (0.05 sec)
-
cmd/sftp-server.go
switch tag { case xsftp.AcceptNetworkError: sftpLogOnceIf(context.Background(), err, "accept-limit-sftp") case xsftp.AcceptChannelError: sftpLogOnceIf(context.Background(), err, "accept-channel-sftp") case xsftp.SSHKeyExchangeError: sftpLogOnceIf(context.Background(), err, "key-exchange-sftp") default: sftpLogOnceIf(context.Background(), err, "unknown-error-sftp") } }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 16.5K bytes - Viewed (0) -
cmd/logging.go
logger.LogIf(ctx, "metrics", err, errKind...) } func s3LogIf(ctx context.Context, err error, errKind ...any) { logger.LogIf(ctx, "s3", err, errKind...) } func sftpLogOnceIf(ctx context.Context, err error, id string, errKind ...any) { logger.LogOnceIf(ctx, "sftp", err, id, errKind...) } func shutdownLogIf(ctx context.Context, err error, 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)