mirror of
https://github.com/go-gitea/gitea
synced 2025-09-28 03:28:13 +00:00
Init commit
This commit is contained in:
21
utils/log/log.go
Normal file
21
utils/log/log.go
Normal file
@@ -0,0 +1,21 @@
|
||||
// Copyright 2014 The Gogs Authors. All rights reserved.
|
||||
// Use of this source code is governed by a MIT-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
// Package log is a wrapper of logs for short calling name.
|
||||
package log
|
||||
|
||||
import (
|
||||
"github.com/gogits/logs"
|
||||
)
|
||||
|
||||
var logger *logs.BeeLogger
|
||||
|
||||
func init() {
|
||||
logger = logs.NewLogger(10000)
|
||||
logger.SetLogger("console", "")
|
||||
}
|
||||
|
||||
func Info(format string, v ...interface{}) {
|
||||
logger.Info(format, v...)
|
||||
}
|
Reference in New Issue
Block a user