1
0
Fork 0
mirror of https://codeberg.org/forgejo/forgejo.git synced 2025-09-15 18:56:59 +00:00

Init commit

This commit is contained in:
Unknown 2014-02-12 14:54:09 -05:00
parent 4836fea876
commit 96b317d3ff
8 changed files with 86 additions and 7 deletions

21
utils/log/log.go Normal file
View 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...)
}