mirror of
https://github.com/golang/go
synced 2024-11-18 08:34:44 -07:00
log: document that log messages end in newlines
Fixes #16564. Change-Id: Idd7b3c8f1d8415acd952d1efb6dc35ba4191805d Reviewed-on: https://go-review.googlesource.com/31578 Run-TryBot: Russ Cox <rsc@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Quentin Smith <quentin@golang.org>
This commit is contained in:
parent
fc88a0f4ce
commit
ee4b58df61
@ -8,6 +8,8 @@
|
|||||||
// Panic[f|ln], which are easier to use than creating a Logger manually.
|
// 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
|
// That logger writes to standard error and prints the date and time
|
||||||
// of each logged message.
|
// of each logged message.
|
||||||
|
// Every log message is output on a separate line: if the message being
|
||||||
|
// printed does not end in a newline, the logger will add one.
|
||||||
// The Fatal functions call os.Exit(1) after writing the log message.
|
// The Fatal functions call os.Exit(1) after writing the log message.
|
||||||
// The Panic functions call panic after writing the log message.
|
// The Panic functions call panic after writing the log message.
|
||||||
package log
|
package log
|
||||||
|
Loading…
Reference in New Issue
Block a user