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 package syslog 13 14 // BUG(brainman): This package is not implemented on Windows yet. 15 16 // BUG(akumar): This package is not implemented on Plan 9 yet. 17 18 // BUG(minux): This package is not implemented on NaCl (Native Client) yet. 19