Explorar el Código

fix default logger

ls hace 3 años
padre
commit
a1f43f8969
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      xlog/logger.go

+ 2 - 1
xlog/logger.go

@@ -22,7 +22,8 @@ func New(w io.Writer) *Logger {
 
 // DefaultLogger defult logger
 func DefaultLogger(w io.Writer) *Logger {
-	return New(w)
+	defLog = New(w)
+	return defLog
 }
 
 // Writer returns the output destination for the standard logger.