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>
This commit is contained in:
Brad Fitzpatrick 2016-01-04 09:12:31 -08:00
parent 7de71c8526
commit ddc25081d2

View 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).