diff options
author | Ryo Nakamura <upa@haeena.net> | 2023-03-14 00:43:53 +0900 |
---|---|---|
committer | Ryo Nakamura <upa@haeena.net> | 2023-03-14 00:43:53 +0900 |
commit | 72c27f16d64d45127302b42946e72bc46d754604 (patch) | |
tree | c7ddfc76134bbc261c89c50b2832b384d29da26e /src/path.c | |
parent | 9b0eb668f92c5d90447475df8845344d166fa36c (diff) |
implement ssh_connect_flag
Each copy thread establishes SSH/SFTP connection to remote host.
A delay is inserted between SSH connecting to the remote.
Diffstat (limited to 'src/path.c')
-rw-r--r-- | src/path.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -132,7 +132,7 @@ static int resolve_dst_path(const char *src_file_path, char *dst_file_path, snprintf(dst_file_path, PATH_MAX - 1, "%s/%s", a->dst_path, src_file_path + strlen(a->src_path) + 1); - mpr_info(a->msg_fd, "file: %s -> %s\n", src_file_path, dst_file_path); + mpr_debug(a->msg_fd, "file: %s -> %s\n", src_file_path, dst_file_path); return 0; } |