Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
golang
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
golang
Commits
8abb8e1d
Commit
8abb8e1d
authored
Oct 17, 2010
by
Rob Pike
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
log: update the documentation to clarify the behavior
R=rsc, PeterGo CC=golang-dev
https://golang.org/cl/2519043
parent
8052786e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
10 deletions
+19
-10
log.go
src/pkg/log/log.go
+19
-10
No files found.
src/pkg/log/log.go
View file @
8abb8e1d
...
...
@@ -21,7 +21,7 @@ import (
"time"
)
// These flags define
the output Loggers produce
.
// These flags define
which text to prefix to each log entry generated by the Logger
.
const
(
// Bits or'ed together to control what's printed. There is no control over the
// order they appear (the order listed here) or the format they present (as
...
...
@@ -125,9 +125,12 @@ func (l *Logger) formatHeader(buf *bytes.Buffer, ns int64, calldepth int) {
}
}
// Output writes the output for a logging event. The string s contains the text to print after
// the time stamp; calldepth is used to recover the PC. It is provided for generality, although
// at the moment on all pre-defined paths it will be 2.
// Output writes the output for a logging event. The string s contains
// the text to print after the prefix specified by the flags of the
// Logger. A newline is appended if the last character of s is not
// already a newline. Calldepth is used to recover the PC and is
// provided for generality, although at the moment on all pre-defined
// paths it will be 2.
func
(
l
*
Logger
)
Output
(
calldepth
int
,
s
string
)
os
.
Error
{
now
:=
time
.
Nanoseconds
()
// get this early.
buf
:=
new
(
bytes
.
Buffer
)
...
...
@@ -140,15 +143,18 @@ func (l *Logger) Output(calldepth int, s string) os.Error {
return
err
}
// Printf prints to the logger in the manner of fmt.Printf.
// Printf calls l.Output to print to the logger.
// Arguments are handled in the manner of fmt.Printf.
func
(
l
*
Logger
)
Printf
(
format
string
,
v
...
interface
{})
{
l
.
Output
(
2
,
fmt
.
Sprintf
(
format
,
v
...
))
}
// Print prints to the logger in the manner of fmt.Print.
// Print calls l.Output to print to the logger.
// Arguments are handled in the manner of fmt.Print.
func
(
l
*
Logger
)
Print
(
v
...
interface
{})
{
l
.
Output
(
2
,
fmt
.
Sprint
(
v
...
))
}
// Println prints to the logger in the manner of fmt.Println.
// Println calls l.Output to print to the logger.
// Arguments are handled in the manner of fmt.Println.
func
(
l
*
Logger
)
Println
(
v
...
interface
{})
{
l
.
Output
(
2
,
fmt
.
Sprintln
(
v
...
))
}
// SetOutput sets the output destination for the standard logger.
...
...
@@ -168,17 +174,20 @@ func SetPrefix(prefix string) {
// These functions write to the standard logger.
// Print prints to the standard logger in the manner of fmt.Print.
// Print calls Output to print to the standard logger.
// Arguments are handled in the manner of fmt.Print.
func
Print
(
v
...
interface
{})
{
std
.
Output
(
2
,
fmt
.
Sprint
(
v
...
))
}
// Printf prints to the standard logger in the manner of fmt.Printf.
// Printf calls Output to print to the standard logger.
// Arguments are handled in the manner of fmt.Printf.
func
Printf
(
format
string
,
v
...
interface
{})
{
std
.
Output
(
2
,
fmt
.
Sprintf
(
format
,
v
...
))
}
// Println prints to the standard logger in the manner of fmt.Println.
// Println calls Output to print to the standard logger.
// Arguments are handled in the manner of fmt.Println.
func
Println
(
v
...
interface
{})
{
std
.
Output
(
2
,
fmt
.
Sprintln
(
v
...
))
}
...
...
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