aboutsummaryrefslogtreecommitdiff
path: root/src/log
diff options
context:
space:
mode:
authorBrad Fitzpatrick <bradfitz@golang.org>2016-01-04 09:12:31 -0800
committerBrad Fitzpatrick <bradfitz@golang.org>2016-01-05 22:56:07 +0000
commitddc25081d24d62ebf37e737b73b8bad8fd4b50ec (patch)
tree0b96525d75b3e2a657600dae5e43bf0f1222351f /src/log
parent7de71c8526d9055be9da99a9ef2a09eb16363d6a (diff)
downloadgo-ddc25081d24d62ebf37e737b73b8bad8fd4b50ec.tar.gz
go-ddc25081d24d62ebf37e737b73b8bad8fd4b50ec.zip
log/syslog: document that syslog is frozen
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>
Diffstat (limited to 'src/log')
-rw-r--r--src/log/syslog/doc.go14
1 files changed, 11 insertions, 3 deletions
diff --git a/src/log/syslog/doc.go b/src/log/syslog/doc.go
index 54e76edb34..dfcc2dde34 100644
--- a/src/log/syslog/doc.go
+++ b/src/log/syslog/doc.go
@@ -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).