diff options
author | Brian Cully <bjc@kublai.com> | 2022-09-17 09:02:34 -0400 |
---|---|---|
committer | Brian Cully <bjc@kublai.com> | 2022-09-17 09:02:34 -0400 |
commit | 5c23e53555c4149fedccdbb25ffe41110c41ffb1 (patch) | |
tree | cb55e22097bec4edc2464883d6e3927d4c535a51 | |
parent | bbf628eda3194415950fa3eb23b21c85f8f77c82 (diff) | |
download | tramp-docker-5c23e53555c4149fedccdbb25ffe41110c41ffb1.tar.gz tramp-docker-5c23e53555c4149fedccdbb25ffe41110c41ffb1.zip |
remove debugging
-rw-r--r-- | tramp-docker.el | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tramp-docker.el b/tramp-docker.el index 453e3c2..e4aa604 100644 --- a/tramp-docker.el +++ b/tramp-docker.el @@ -71,7 +71,6 @@ This function is used by ‘tramp-set-completion-function’, please see its function help for a description of the format." - (message "cf: %s" _args) (let* ((raw-list (shell-command-to-string (concat tramp-docker-program " ps --format '{{.ID}}\t{{.Names}}'"))) @@ -81,10 +80,6 @@ see its function help for a description of the format." (or (nth 1 words) (nth 0 words)))) lines)) (machines (seq-take-while (lambda (name) name) names))) - (message "rli: %s" raw-list) - (message "lns: %s" lines) - (message "ia: %s" names) - (message "ma: %s" machines) (mapcar (lambda (m) (list nil m)) machines))) ;; todo: check tramp-async-args and tramp-direct-async |