remove unused POut()

This commit is contained in:
Henry 2015-02-27 14:19:19 +01:00
parent 5b5d3221fd
commit 71245e5971

View File

@ -1,7 +1,6 @@
package util
import (
"fmt"
"os"
logging "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-logging"
@ -33,11 +32,6 @@ const (
// loggers is the set of loggers in the system
var loggers = map[string]*logging.Logger{}
// POut is a shorthand printing function to output to Stdout.
func POut(format string, a ...interface{}) {
fmt.Fprintf(os.Stdout, format, a...)
}
// SetupLogging will initialize the logger backend and set the flags.
func SetupLogging() {