Explorar o código

Removed import cycle

Luis Figueiredo %!s(int64=8) %!d(string=hai) anos
pai
achega
abda899407
Modificáronse 1 ficheiros con 1 adicións e 3 borrados
  1. 1 3
      prettylog.go

+ 1 - 3
prettylog.go

@@ -6,8 +6,6 @@ import (
 	"runtime"
 	"strings"
 	"time"
-
-	"dev.hexasoftware.com/hxs/prettylog"
 )
 
 type PrettyLogWritter struct {
@@ -58,5 +56,5 @@ func CreateLogger() *log.Logger {
 
 func Global() {
 	log.SetFlags(0)
-	log.SetOutput(prettylog.New())
+	log.SetOutput(New())
 }