]> Cypherpunks repositories - gostls13.git/commitdiff
log/syslog: document that syslog is frozen
authorBrad Fitzpatrick <bradfitz@golang.org>
Mon, 4 Jan 2016 17:12:31 +0000 (09:12 -0800)
committerBrad Fitzpatrick <bradfitz@golang.org>
Tue, 5 Jan 2016 22:56:07 +0000 (22:56 +0000)
Try to reduce feature request bug reports.

Change-Id: I713bb715d25d23e084b054aea8e1c3197dde90d4
Reviewed-on: https://go-review.googlesource.com/18222
Reviewed-by: Ian Lance Taylor <iant@golang.org>
src/log/syslog/doc.go

index 54e76edb34bab539b896978df74f9ea7c88c3e4a..dfcc2dde34fa65ead43bc8b9a6d80f0741d5bc9e 100644 (file)
@@ -9,10 +9,18 @@
 // Only one call to Dial is necessary. On write failures,
 // the syslog client will attempt to reconnect to the server
 // and write again.
+//
+// The syslog package is frozen and not accepting new features.
+// Some external packages provide more functionality. See:
+//
+//   https://godoc.org/?q=syslog
 package syslog
 
-// BUG(brainman): This package is not implemented on Windows yet.
+// BUG(brainman): This package is not implemented on Windows. As the
+// syslog package is frozen, Windows users are encouraged to
+// use a package outside of the standard library. For background,
+// see https://golang.org/issue/1108.
 
-// BUG(akumar): This package is not implemented on Plan 9 yet.
+// BUG(akumar): This package is not implemented on Plan 9.
 
-// BUG(minux): This package is not implemented on NaCl (Native Client) yet.
+// BUG(minux): This package is not implemented on NaCl (Native Client).