Browse Source

fix default logger

ls 2 years ago
parent
commit
a1f43f8969
1 changed files with 2 additions and 1 deletions
  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.