Skip to content

Commit 071f66f

Browse files
committed
Merge pull request #32 from sw1nn/patch-2
fix trace/tracef mixup.
2 parents 1969441 + 7f0ffbb commit 071f66f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/clj_ssh/ssh.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -902,7 +902,7 @@ cmd specifies a command to exec. Valid commands are:
902902
(defn- scp-copy-dir
903903
"Send acknowledgement to the specified output stream"
904904
[send recv ^File dir {:keys [dir-mode] :or {dir-mode 0755} :as options}]
905-
(logging/trace "Sending directory %s" (.getAbsolutePath dir))
905+
(logging/tracef "Sending directory %s" (.getAbsolutePath dir))
906906
(scp-send-command
907907
send recv
908908
(format "D%04o 0 %s" dir-mode (.getName dir)))

0 commit comments

Comments
 (0)