Home | History | Annotate | Download | only in syslog
      1 // Copyright 2012 The Go Authors. All rights reserved.
      2 // Use of this source code is governed by a BSD-style
      3 // license that can be found in the LICENSE file.
      4 
      5 // Package syslog provides a simple interface to the system log
      6 // service. It can send messages to the syslog daemon using UNIX
      7 // domain sockets, UDP or TCP.
      8 //
      9 // Only one call to Dial is necessary. On write failures,
     10 // the syslog client will attempt to reconnect to the server
     11 // and write again.
     12 //
     13 // The syslog package is frozen and is not accepting new features.
     14 // Some external packages provide more functionality. See:
     15 //
     16 //   https://godoc.org/?q=syslog
     17 package syslog
     18 
     19 // BUG(brainman): This package is not implemented on Windows. As the
     20 // syslog package is frozen, Windows users are encouraged to
     21 // use a package outside of the standard library. For background,
     22 // see https://golang.org/issue/1108.
     23 
     24 // BUG(akumar): This package is not implemented on Plan 9.
     25 
     26 // BUG(minux): This package is not implemented on NaCl (Native Client).
     27