Skip to content

Commit 445c42b

Browse files
committed
Added debug log to report on the rsync remote path used for file transfer
1 parent b2c88ea commit 445c42b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/murfey/client/rsync.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,14 @@ def __init__(
7373
self._local = local
7474
self._server_url = server_url
7575
self._notify = notify
76+
77+
# Set rsync destination
7678
if local:
7779
self._remote = str(basepath_remote)
7880
else:
7981
self._remote = f"{server_url.hostname}::{basepath_remote}/"
82+
logger.debug(f"rsync remote path set to {self._remote}")
83+
8084
# For local tests you can use something along the lines of
8185
# self._remote = f"wra62962@ws133:/dls/tmp/wra62962/junk/{basepath_remote}"
8286
# to avoid having to set up an rsync daemon

0 commit comments

Comments
 (0)