forked from beego/beego
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
610f27d
commit e3d668f
Showing
1 changed file
with
111 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
// Copyright 2014 beego Author. All Rights Reserved. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package beego | ||
|
||
import ( | ||
"strings" | ||
|
||
"github.com/astaxie/beego/logs" | ||
) | ||
|
||
// Log levels to control the logging output. | ||
const ( | ||
LevelEmergency = iota | ||
LevelAlert | ||
LevelCritical | ||
LevelError | ||
LevelWarning | ||
LevelNotice | ||
LevelInformational | ||
LevelDebug | ||
) | ||
|
||
// BeeLogger references the used application logger. | ||
var BeeLogger = logs.GetBeeLogger() | ||
|
||
// SetLevel sets the global log level used by the simple logger. | ||
func SetLevel(l int) { | ||
logs.SetLevel(l) | ||
} | ||
|
||
// SetLogFuncCall set the CallDepth, default is 3 | ||
func SetLogFuncCall(b bool) { | ||
logs.SetLogFuncCall(b) | ||
} | ||
|
||
// SetLogger sets a new logger. | ||
func SetLogger(adaptername string, config string) error { | ||
return logs.SetLogger(adaptername, config) | ||
} | ||
|
||
// Emergency logs a message at emergency level. | ||
func Emergency(v ...interface{}) { | ||
logs.Emergency(generateFmtStr(len(v)), v...) | ||
} | ||
|
||
// Alert logs a message at alert level. | ||
func Alert(v ...interface{}) { | ||
logs.Alert(generateFmtStr(len(v)), v...) | ||
} | ||
|
||
// Critical logs a message at critical level. | ||
func Critical(v ...interface{}) { | ||
logs.Critical(generateFmtStr(len(v)), v...) | ||
} | ||
|
||
// Error logs a message at error level. | ||
func Error(v ...interface{}) { | ||
logs.Error(generateFmtStr(len(v)), v...) | ||
} | ||
|
||
// Warning logs a message at warning level. | ||
func Warning(v ...interface{}) { | ||
logs.Warning(generateFmtStr(len(v)), v...) | ||
} | ||
|
||
// Warn compatibility alias for Warning() | ||
func Warn(v ...interface{}) { | ||
logs.Warn(generateFmtStr(len(v)), v...) | ||
} | ||
|
||
// Notice logs a message at notice level. | ||
func Notice(v ...interface{}) { | ||
logs.Notice(generateFmtStr(len(v)), v...) | ||
} | ||
|
||
// Informational logs a message at info level. | ||
func Informational(v ...interface{}) { | ||
logs.Informational(generateFmtStr(len(v)), v...) | ||
} | ||
|
||
// Info compatibility alias for Warning() | ||
func Info(v ...interface{}) { | ||
logs.Info(generateFmtStr(len(v)), v...) | ||
} | ||
|
||
// Debug logs a message at debug level. | ||
func Debug(v ...interface{}) { | ||
logs.Debug(generateFmtStr(len(v)), v...) | ||
} | ||
|
||
// Trace logs a message at trace level. | ||
// compatibility alias for Warning() | ||
func Trace(v ...interface{}) { | ||
logs.Trace(generateFmtStr(len(v)), v...) | ||
} | ||
|
||
func generateFmtStr(n int) string { | ||
return strings.Repeat("%v ", n) | ||
} |