Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
张磊
/
FileStorageBeego
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
11e6c282
authored
2014-01-21 17:57:37 +0800
by
cloudaice
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
diffrent level logs display diffrent color
1 parent
91d75e89
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
1 deletions
logs/console.go
logs/console.go
View file @
11e6c28
...
...
@@ -6,6 +6,25 @@ import (
"os"
)
type
Brush
func
(
string
)
string
func
NewBrush
(
color
string
)
Brush
{
pre
:=
"
\0
33["
reset
:=
"
\0
33[0m"
return
func
(
text
string
)
string
{
return
pre
+
color
+
"m"
+
text
+
reset
}
}
var
colors
=
[]
Brush
{
NewBrush
(
"1;36"
),
// Trace cyan
NewBrush
(
"1;34"
),
// Debug blue
NewBrush
(
"1;32"
),
// Info green
NewBrush
(
"1;33"
),
// Warn yellow
NewBrush
(
"1;31"
),
// Error red
NewBrush
(
"1;35"
),
// Critical purple
}
// ConsoleWriter implements LoggerInterface and writes messages to terminal.
type
ConsoleWriter
struct
{
lg
*
log
.
Logger
...
...
@@ -35,7 +54,7 @@ func (c *ConsoleWriter) WriteMsg(msg string, level int) error {
if
level
<
c
.
Level
{
return
nil
}
c
.
lg
.
Println
(
msg
)
c
.
lg
.
Println
(
colors
[
level
](
msg
)
)
return
nil
}
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
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 post a comment