summaryrefslogtreecommitdiff
path: root/src/path.c
diff options
context:
space:
mode:
authorRyo Nakamura <upa@haeena.net>2023-03-14 00:43:53 +0900
committerRyo Nakamura <upa@haeena.net>2023-03-14 00:43:53 +0900
commit72c27f16d64d45127302b42946e72bc46d754604 (patch)
treec7ddfc76134bbc261c89c50b2832b384d29da26e /src/path.c
parent9b0eb668f92c5d90447475df8845344d166fa36c (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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/path.c b/src/path.c
index 2feb52e..ca835f0 100644
--- a/src/path.c
+++ b/src/path.c
@@ -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;
}