From: Brad Fitzpatrick Date: Mon, 4 Jan 2016 17:12:31 +0000 (-0800) Subject: log/syslog: document that syslog is frozen X-Git-Tag: go1.6beta2~148 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=ddc25081d24d62ebf37e737b73b8bad8fd4b50ec;p=gostls13.git 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 --- 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).