File: debug.go

package info (click to toggle)
golang-github-pkg-sftp 0.0~git20160930.0.4d0e916-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 320 kB
  • sloc: makefile: 5
file content (9 lines) | stat: -rw-r--r-- 119 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
// +build debug

package sftp

import "log"

func debug(fmt string, args ...interface{}) {
	log.Printf(fmt, args...)
}