remove unused POut()
Henry committed
Feb 27, 2015 at 14:19 UTC
71245e5971ac346912b024a3dddaeb87f4f64a81
1 file changed
-6
util/log.go
-6
@@ -1,7 +1,6 @@
1
package util
2
3
import (
4
- "fmt"
4
"os"
5
6
logging "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-logging"
@@ -33,11 +32,6 @@ const (
32
// loggers is the set of loggers in the system
33
var loggers = map[string]*logging.Logger{}
34
36
-// POut is a shorthand printing function to output to Stdout.
37
-func POut(format string, a ...interface{}) {
38
- fmt.Fprintf(os.Stdout, format, a...)
39
-}
40
-
35
// SetupLogging will initialize the logger backend and set the flags.
36
func SetupLogging() {
37