X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=man%2Fsd_journal_print.xml;h=7742268f5d2d351d7be001e0fe222b6acb1e5001;hp=c40498b38a318e57d4945929dd5f20d1321d2ba0;hb=7654b2c2593f4d106bc01be2662c1ab8339c90e1;hpb=a8eedf4953d379dc09ee2b04e69a0a54ba247a02 diff --git a/man/sd_journal_print.xml b/man/sd_journal_print.xml index c40498b38..7742268f5 100644 --- a/man/sd_journal_print.xml +++ b/man/sd_journal_print.xml @@ -47,6 +47,8 @@ sd_journal_printv sd_journal_send sd_journal_sendv + sd_journal_perror + SD_JOURNAL_SUPPRESS_LOCATION Submit log entries to the journal @@ -80,6 +82,11 @@ int n + + int sd_journal_perror + const char* message + + @@ -116,25 +123,27 @@ object of type va_list (see stdarg3 for more information) instead of the format string. It - is otherwise equivalent in behaviour. + is otherwise equivalent in behavior. sd_journal_send() may be used to submit structured log entries to the system journal. It takes a series of format strings, each immediately followed by their associated parameters, - terminated by a NULL. The strings passed should be of + terminated by NULL. The strings passed should be of the format VARIABLE=value. The - variable name must be in uppercase and consist only - of characters, numbers and underscores, and may not - begin with an underscore. The value can be of any size - and format. It is highly recommended to submit - text strings formatted in the UTF-8 character encoding - only, and submit binary fields only when formatting in - UTf-8 strings is not sensible. A number of well known - fields are defined, see + variable name must be in uppercase and consist only of + characters, numbers and underscores, and may not begin + with an underscore. (All assignments that do not + follow this syntax will be ignored.) The value can be + of any size and format. It is highly recommended to + submit text strings formatted in the UTF-8 character + encoding only, and submit binary fields only when + formatting in UTf-8 strings is not sensible. A number + of well known fields are defined, see systemd.journal-fields7 for details, but additional application defined fields - may be used. + may be used. A variable may be assigned more than one + value per entry. sd_journal_sendv() is similar to sd_journal_send() but @@ -149,8 +158,23 @@ particularly useful to submit binary objects to the journal where that is necessary. + sd_journal_perror() is a + similar to + perror3 + and writes a message to the journal that consists of + the passed string, suffixed with ": " and a human + readable representation of the current error code + stored in + errno3. If + the message string is passed as NULL or empty string + only the error string representation will be written, + prefixed with nothing. An additional journal field + ERRNO= is included in the entry containing the numeric + error code formatted as decimal string. The log + priority used is LOG_ERR (3). + Note that sd_journal_send() - is a wapper around + is a wrapper around sd_journal_sendv() to make it easier to use when only text strings shall be submitted. Also, the following two calls are @@ -168,13 +192,32 @@ sd_journal_send("MESSAGE=Hello World, this is PID %lu!", (unsigned long) getpid( not desired it can be turned off by defining SD_JOURNAL_SUPPRESS_LOCATION before including sd-journal.h. + + syslog3 + and sd_journal_print() may + largely be used interchangeably + functionality-wise. However, note that log messages + logged via the former take a different path to the + journal server than the later, and hence global + chronological ordering between the two streams cannot + be guaranteed. Using + sd_journal_print() has the + benefit of logging source code line, file names, and + functions as meta data along all entries, and + guaranteeing chronological ordering with structured + log entries that are generated via + sd_journal_send(). Using + syslog() has the benefit of being + more portable. Return Value - The four calls return 0 on success or a - negative errno-style error code. + The four calls return 0 on success or a negative + errno-style error code. The + errno3 + variable itself is not altered. @@ -196,9 +239,11 @@ sd_journal_send("MESSAGE=Hello World, this is PID %lu!", (unsigned long) getpid( systemd1, - sd-journal7, + sd-journal3, sd_journal_stream_fd3, syslog3, + perror3, + errno3, systemd.journal-fields7