diff --git a/src/log/log.go b/src/log/log.go index 26cdb532dfc..58b8788be4a 100644 --- a/src/log/log.go +++ b/src/log/log.go @@ -8,6 +8,8 @@ // 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. +// 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 Panic functions call panic after writing the log message. package log