Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go
Commits
dd8afb80
Commit
dd8afb80
authored
Oct 13, 2010
by
Rob Pike
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
log: fix out-of-date package comment
R=rsc CC=golang-dev
https://golang.org/cl/2485041
parent
78d19b9b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
7 deletions
+6
-7
src/pkg/log/log.go
src/pkg/log/log.go
+6
-7
No files found.
src/pkg/log/log.go
View file @
dd8afb80
...
...
@@ -2,13 +2,12 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Simple logging package. It defines a type, Logger, with simple
// methods for formatting output to one or two destinations. It also
// has a predefined 'standard' Logger accessible through helper
// functions Print[f|ln], Exit[f|ln], and Panic[f|ln], which are
// easier to use than creating a Logger manually. That logger writes
// to standard error and prints the date and time of each logged
// message.
// Simple logging package. It defines a type, Logger, with methods
// for formatting output. It also has a predefined 'standard' Logger
// accessible through helper functions Print[f|ln], Exit[f|ln], and
// Panic[f|ln], which are easier to use than creating a Logger manually.
// That logger writes to standard error and prints the date and time
// of each logged message.
// The Exit functions call os.Exit(1) after writing the log message.
// The Panic functions call panic after writing the log message.
package
log
...
...
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