1
0
mirror of https://github.com/golang/go synced 2024-11-20 08:44:39 -07:00

s/NewLogger/New/

R=rsc
DELTA=7  (0 added, 0 deleted, 7 changed)
OCL=28947
CL=28950
This commit is contained in:
Rob Pike 2009-05-15 17:22:30 -07:00
parent 96890d4218
commit c54699c977
2 changed files with 7 additions and 7 deletions

View File

@ -45,19 +45,19 @@ type Logger struct {
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.
// The prefix appears at the beginning of each generated log line.
// 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}
}
var (
stdout = NewLogger(os.Stdout, nil, "", Lok|Ldate|Ltime);
stderr = NewLogger(os.Stderr, nil, "", Lok|Ldate|Ltime);
exit = NewLogger(os.Stderr, nil, "", Lexit|Ldate|Ltime);
crash = NewLogger(os.Stderr, nil, "", Lcrash|Ldate|Ltime);
stdout = New(os.Stdout, nil, "", Lok|Ldate|Ltime);
stderr = New(os.Stderr, nil, "", Lok|Ldate|Ltime);
exit = New(os.Stderr, nil, "", Lexit|Ldate|Ltime);
crash = New(os.Stderr, nil, "", Lcrash|Ldate|Ltime);
)
var shortnames = make(map[string] string) // cache of short names to avoid allocation.

View File

@ -54,7 +54,7 @@ func testLog(t *testing.T, flag int, prefix string, pattern string, useLogf bool
defer r.Close();
defer w.Close();
buf := bufio.NewReader(r);
l := NewLogger(w, nil, prefix, flag);
l := New(w, nil, prefix, flag);
if useLogf {
l.Logf("hello %d world", 23);
} else {