Commit ddc25081 authored by Brad Fitzpatrick's avatar Brad Fitzpatrick

log/syslog: document that syslog is frozen

Try to reduce feature request bug reports.

Change-Id: I713bb715d25d23e084b054aea8e1c3197dde90d4
Reviewed-on: https://go-review.googlesource.com/18222Reviewed-by: default avatarIan Lance Taylor <iant@golang.org>
parent 7de71c85
...@@ -9,10 +9,18 @@ ...@@ -9,10 +9,18 @@
// Only one call to Dial is necessary. On write failures, // Only one call to Dial is necessary. On write failures,
// the syslog client will attempt to reconnect to the server // the syslog client will attempt to reconnect to the server
// and write again. // 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 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).
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment