(format string, args ...interface{})
| 406 | } |
| 407 | |
| 408 | func (a *SSHAdapter) Trace(format string, args ...interface{}) { |
| 409 | if !a.adapterBase.debugging { |
| 410 | return |
| 411 | } |
| 412 | tracerx.Printf(format, args...) |
| 413 | } |
| 414 | |
| 415 | func configureSSHAdapter(m *concreteManifest) { |
| 416 | m.RegisterNewAdapterFunc("ssh", Upload, func(name string, dir Direction) Adapter { |
no outgoing calls
no test coverage detected