From 838defa1408ef3e96f7722b882d5034320d13cd8 Mon Sep 17 00:00:00 2001 From: Grigory Zubankov Date: Fri, 25 Aug 2017 17:52:53 +0300 Subject: [PATCH] added godoc and travis badges --- README.md | 2 ++ doc.go | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 830aea3..47bbc55 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,6 @@ # journald-send +[![GoDoc](https://godoc.org/github.com/ssgreg/journald-send?status.svg)](https://godoc.org/github.com/ssgreg/journald-send) +[![Build Status](https://travis-ci.org/ssgreg/journald-send.svg?branch=master)](https://travis-ci.org/ssgreg/journald-send) Package `journald` offers Go implementation of systemd Journal's native API for logging. Key features are: diff --git a/doc.go b/doc.go index 3c35d50..0f6693d 100644 --- a/doc.go +++ b/doc.go @@ -66,9 +66,10 @@ Our structured message includes six fields. The first thow we passed are well-kn 1. MESSAGE= is the actual human readable message part of the structured message. 2. PRIORITY= is the numeric message priority value as known from BSD syslog formatted as an integer string. -Applications may relatively freely define additional fields as they see fit (we defined four pretty arbitrary ones in our example). A complete list of the currently well-known fields is available here: http://0pointer.de/public/systemd-man/systemd.journal-fields.html +Applications may relatively freely define additional fields as they see fit (we defined four pretty arbitrary ones in our example). A complete list of the currently well-known fields is available here: https://www.freedesktop.org/software/systemd/man/systemd.journal-fields.html For more details visit https://github.com/ssgreg/journald-send + Thanks to http://0pointer.de/blog/ for the inspiration. */ package journald