Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(2012)

Issue 157168: code review 157168: Initial syslog module. It's my first go, so please bare... (Closed)

Can't Edit
Can't Publish+Mail
Start Review
Created:
15 years, 4 months ago by nictuku
Modified:
15 years, 3 months ago
Reviewers:
CC:
golang-dev, rsc
Visibility:
Public.

Description

Initial syslog module. It's my first go, so please bare with me for the ugliness. Also making a small change to the log module, although it probably deserves a separate changelist with further error feedback fixes. CONTRIBUTORS: Yves Junqueira <yves.junqueira@gmail.com> AUTHORS: - N/A (I'm a Googler)

Patch Set 1 #

Patch Set 2 : code review 157168: Initial syslog module. This is not ready yet. #

Patch Set 3 : code review 157168: Initial syslog module. This is not ready yet. #

Patch Set 4 : code review 157168: Initial syslog module. This is not ready yet. #

Patch Set 5 : code review 157168: Initial syslog module. This is not ready yet. #

Patch Set 6 : code review 157168: Initial syslog module. It's my first go, so please bare... #

Patch Set 7 : code review 157168: Initial syslog module. It's my first go, so please bare... #

Patch Set 8 : code review 157168: Initial syslog module. It's my first go, so please bare... #

Total comments: 32

Patch Set 9 : code review 157168: Initial syslog module. It's my first go, so please bare... #

Total comments: 14

Patch Set 10 : code review 157168: Initial syslog module. It's my first go, so please bare... #

Total comments: 2

Patch Set 11 : code review 157168: Initial syslog module. It's my first go, so please bare... #

Patch Set 12 : code review 157168: Initial syslog module. It's my first go, so please bare... #

Patch Set 13 : code review 157168: Initial syslog module. It's my first go, so please bare... #

Total comments: 2

Patch Set 14 : code review 157168: Initial syslog module. It's my first go, so please bare... #

Unified diffs Side-by-side diffs Delta from patch set Stats (+257 lines, -3 lines) Patch
M src/pkg/log/log.go View 3 4 5 6 7 8 2 chunks +7 lines, -3 lines 0 comments Download
A src/pkg/syslog/Makefile View 1 2 3 4 5 6 7 1 chunk +11 lines, -0 lines 0 comments Download
A src/pkg/syslog/syslog.go View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +144 lines, -0 lines 0 comments Download
A src/pkg/syslog/syslog_test.go View 1 2 3 4 5 6 7 8 9 1 chunk +95 lines, -0 lines 0 comments Download

Messages

Total messages: 12
nictuku
Hello golang-dev@googlegroups.com, I'd like you to review the following change.
15 years, 4 months ago (2009-11-26 05:51:22 UTC) #1
rsc
Thanks for writing this. A few design comments below, which I think will simplify things ...
15 years, 4 months ago (2009-11-29 22:57:57 UTC) #2
nictuku
Hi rsc, Thank you for the detailed review. Note that despite the lack of updates, ...
15 years, 4 months ago (2009-12-05 23:54:47 UTC) #3
rsc
On Sat, Dec 5, 2009 at 15:54, <yves.junqueira@gmail.com> wrote: > Meanwhile, may I ask why ...
15 years, 4 months ago (2009-12-06 00:30:23 UTC) #4
nictuku
Please take another look. http://codereview.appspot.com/157168/diff/2034/2035 File src/pkg/log/log.go (right): http://codereview.appspot.com/157168/diff/2034/2035#newcode128 src/pkg/log/log.go:128: func (l *Logger) Output(calldepth int, ...
15 years, 3 months ago (2009-12-07 18:43:51 UTC) #5
rsc
http://codereview.appspot.com/157168/diff/5003/5006 File src/pkg/syslog/syslog.go (right): http://codereview.appspot.com/157168/diff/5003/5006#newcode7 src/pkg/syslog/syslog.go:7: // syslog daemon using UNIX domain sockets, or UDP ...
15 years, 3 months ago (2009-12-07 19:23:33 UTC) #6
nictuku
Thank you for the patience. Hopefully my further changes will be less demanding of you. ...
15 years, 3 months ago (2009-12-07 20:24:32 UTC) #7
rsc
http://codereview.appspot.com/157168/diff/5015/5018 File src/pkg/syslog/syslog.go (right): http://codereview.appspot.com/157168/diff/5015/5018#newcode42 src/pkg/syslog/syslog.go:42: type SyslogWriter interface { Final question: why is this ...
15 years, 3 months ago (2009-12-07 20:45:23 UTC) #8
nictuku
Thanks again. http://codereview.appspot.com/157168/diff/5015/5018 File src/pkg/syslog/syslog.go (right): http://codereview.appspot.com/157168/diff/5015/5018#newcode42 src/pkg/syslog/syslog.go:42: type SyslogWriter interface { On 2009/12/07 20:45:24, ...
15 years, 3 months ago (2009-12-08 03:12:04 UTC) #9
rsc
looks good; one final change http://codereview.appspot.com/157168/diff/5031/5034 File src/pkg/syslog/syslog.go (right): http://codereview.appspot.com/157168/diff/5031/5034#newcode33 src/pkg/syslog/syslog.go:33: // WriteCloser implements io.WriteCloser ...
15 years, 3 months ago (2009-12-09 08:01:31 UTC) #10
nictuku
Done. http://codereview.appspot.com/157168/diff/5031/5034 File src/pkg/syslog/syslog.go (right): http://codereview.appspot.com/157168/diff/5031/5034#newcode33 src/pkg/syslog/syslog.go:33: // WriteCloser implements io.WriteCloser and provides other On ...
15 years, 3 months ago (2009-12-09 16:28:33 UTC) #11
rsc
15 years, 3 months ago (2009-12-11 20:41:54 UTC) #12
*** Submitted as http://code.google.com/p/go/source/detail?r=42e3d20acc84 ***

syslog: new package

R=golang-dev, rsc
http://codereview.appspot.com/157168

Committer: Russ Cox <rsc@golang.org>
Sign in to reply to this message.

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b