diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2017-03-07 15:09:05 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-07 15:09:05 +0800 |
commit | fa41ddd3ebcdd90a94bd1c56d095476604b1957c (patch) | |
tree | 8648f3c6cf3daf9c2d5713fbbd58406307f1323f /vendor/github.com/ngaut/log/log.go | |
parent | 848293671b5d9c31ce3eb9ad8a1f130edd0ee7c5 (diff) | |
download | gitea-fa41ddd3ebcdd90a94bd1c56d095476604b1957c.tar.gz gitea-fa41ddd3ebcdd90a94bd1c56d095476604b1957c.zip |
fix build failed on aarch64 (#1132)
Diffstat (limited to 'vendor/github.com/ngaut/log/log.go')
-rw-r--r-- | vendor/github.com/ngaut/log/log.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/github.com/ngaut/log/log.go b/vendor/github.com/ngaut/log/log.go index 7e193715bd..896b393095 100644 --- a/vendor/github.com/ngaut/log/log.go +++ b/vendor/github.com/ngaut/log/log.go @@ -372,7 +372,7 @@ func genHourTime(t time.Time) string { } func New() *logger { - return Newlogger(os.Stdout, "") + return Newlogger(os.Stderr, "") } func Newlogger(w io.Writer, prefix string) *logger { |