• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..15-Feb-2020-

.gitignoreH A D15-Feb-2020252 2317

LICENSEH A D15-Feb-20201.1 KiB2116

README.mdH A D15-Feb-2020470 128

builtin.goH A D15-Feb-20205.4 KiB215152

go.modH A D15-Feb-202038 21

syslog.goH A D15-Feb-2020543 2817

unix.goH A D15-Feb-20203 KiB124105

unsupported.goH A D15-Feb-2020508 1810

README.md

1go-syslog
2=========
3
4This repository provides a very simple `gsyslog` package. The point of this
5package is to allow safe importing of syslog without introducing cross-compilation
6issues. The stdlib `log/syslog` cannot be imported on Windows systems, and without
7conditional compilation this adds complications.
8
9Instead, `gsyslog` provides a very simple wrapper around `log/syslog` but returns
10a runtime error if attempting to initialize on a non Linux or OSX system.
11
12