mirror of https://github.com/gogits/gogs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
769 B
38 lines
769 B
11 years ago
|
// 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", "")
|
||
|
}
|
||
|
|
||
11 years ago
|
func Trace(format string, v ...interface{}) {
|
||
|
logger.Trace(format, v...)
|
||
|
}
|
||
|
|
||
11 years ago
|
func Info(format string, v ...interface{}) {
|
||
|
logger.Info(format, v...)
|
||
|
}
|
||
11 years ago
|
|
||
|
func Error(format string, v ...interface{}) {
|
||
|
logger.Error(format, v...)
|
||
|
}
|
||
|
|
||
|
func Warn(format string, v ...interface{}) {
|
||
|
logger.Warn(format, v...)
|
||
|
}
|
||
11 years ago
|
|
||
|
func Critical(format string, v ...interface{}) {
|
||
|
logger.Critical(format, v...)
|
||
|
}
|