From 71245e5971ac346912b024a3dddaeb87f4f64a81 Mon Sep 17 00:00:00 2001 From: Henry Date: Fri, 27 Feb 2015 14:19:19 +0100 Subject: [PATCH] remove unused POut() --- util/log.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/util/log.go b/util/log.go index c5611d67d..5c6ab2587 100644 --- a/util/log.go +++ b/util/log.go @@ -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() {