Commit c54699c9 authored by Rob Pike's avatar Rob Pike

s/NewLogger/New/

R=rsc
DELTA=7  (0 added, 0 deleted, 7 changed)
OCL=28947
CL=28950
parent 96890d42
...@@ -45,19 +45,19 @@ type Logger struct { ...@@ -45,19 +45,19 @@ type Logger struct {
flag int; // properties flag int; // properties
} }
// NewLogger creates a new Logger. The out0 and out1 variables set the // New creates a new Logger. The out0 and out1 variables set the
// destinations to which log data will be written; out1 may be nil. // destinations to which log data will be written; out1 may be nil.
// The prefix appears at the beginning of each generated log line. // The prefix appears at the beginning of each generated log line.
// The flag argument defines the logging properties. // The flag argument defines the logging properties.
func NewLogger(out0, out1 io.Writer, prefix string, flag int) *Logger { func New(out0, out1 io.Writer, prefix string, flag int) *Logger {
return &Logger{out0, out1, prefix, flag} return &Logger{out0, out1, prefix, flag}
} }
var ( var (
stdout = NewLogger(os.Stdout, nil, "", Lok|Ldate|Ltime); stdout = New(os.Stdout, nil, "", Lok|Ldate|Ltime);
stderr = NewLogger(os.Stderr, nil, "", Lok|Ldate|Ltime); stderr = New(os.Stderr, nil, "", Lok|Ldate|Ltime);
exit = NewLogger(os.Stderr, nil, "", Lexit|Ldate|Ltime); exit = New(os.Stderr, nil, "", Lexit|Ldate|Ltime);
crash = NewLogger(os.Stderr, nil, "", Lcrash|Ldate|Ltime); crash = New(os.Stderr, nil, "", Lcrash|Ldate|Ltime);
) )
var shortnames = make(map[string] string) // cache of short names to avoid allocation. var shortnames = make(map[string] string) // cache of short names to avoid allocation.
......
...@@ -54,7 +54,7 @@ func testLog(t *testing.T, flag int, prefix string, pattern string, useLogf bool ...@@ -54,7 +54,7 @@ func testLog(t *testing.T, flag int, prefix string, pattern string, useLogf bool
defer r.Close(); defer r.Close();
defer w.Close(); defer w.Close();
buf := bufio.NewReader(r); buf := bufio.NewReader(r);
l := NewLogger(w, nil, prefix, flag); l := New(w, nil, prefix, flag);
if useLogf { if useLogf {
l.Logf("hello %d world", 23); l.Logf("hello %d world", 23);
} else { } else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment