Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
B
beego
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
beego
Commits
d629c1d3
Commit
d629c1d3
authored
Jun 15, 2015
by
astaxie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
change the comments
parent
817650aa
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
6 deletions
+3
-6
log.go
logs/log.go
+3
-6
No files found.
logs/log.go
View file @
d629c1d3
...
...
@@ -295,8 +295,7 @@ func (bl *BeeLogger) Debug(format string, v ...interface{}) {
}
// Log WARN level message.
//
// Deprecated: compatibility alias for Warning(), Will be removed in 1.5.0.
// compatibility alias for Warning()
func
(
bl
*
BeeLogger
)
Warn
(
format
string
,
v
...
interface
{})
{
if
LevelWarning
>
bl
.
level
{
return
...
...
@@ -306,8 +305,7 @@ func (bl *BeeLogger) Warn(format string, v ...interface{}) {
}
// Log INFO level message.
//
// Deprecated: compatibility alias for Informational(), Will be removed in 1.5.0.
// compatibility alias for Informational()
func
(
bl
*
BeeLogger
)
Info
(
format
string
,
v
...
interface
{})
{
if
LevelInformational
>
bl
.
level
{
return
...
...
@@ -317,8 +315,7 @@ func (bl *BeeLogger) Info(format string, v ...interface{}) {
}
// Log TRACE level message.
//
// Deprecated: compatibility alias for Debug(), Will be removed in 1.5.0.
// compatibility alias for Debug()
func
(
bl
*
BeeLogger
)
Trace
(
format
string
,
v
...
interface
{})
{
if
LevelDebug
>
bl
.
level
{
return
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment