]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/test/test-log.c
systemd-nspawn: decrease non-fatal mount errors to debug level (#4569)
[thirdparty/systemd.git] / src / test / test-log.c
CommitLineData
877d54e9
LP
1/***
2 This file is part of systemd.
3
4 Copyright 2012 Lennart Poettering
5
6 systemd is free software; you can redistribute it and/or modify it
7 under the terms of the GNU Lesser General Public License as published by
8 the Free Software Foundation; either version 2.1 of the License, or
9 (at your option) any later version.
10
11 systemd is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public License
17 along with systemd; If not, see <http://www.gnu.org/licenses/>.
18***/
19
20#include <stddef.h>
21#include <unistd.h>
22
cf0fbc49 23#include "formats-util.h"
877d54e9 24#include "log.h"
de0671ee 25#include "util.h"
877d54e9
LP
26
27int main(int argc, char* argv[]) {
28
29 log_set_target(LOG_TARGET_CONSOLE);
30 log_open();
31
32 log_struct(LOG_INFO,
de0671ee 33 "MESSAGE=Waldo PID="PID_FMT, getpid(),
877d54e9
LP
34 "SERVICE=piepapo",
35 NULL);
36
37 log_set_target(LOG_TARGET_JOURNAL);
38 log_open();
39
40 log_struct(LOG_INFO,
de0671ee 41 "MESSAGE=Foobar PID="PID_FMT, getpid(),
877d54e9
LP
42 "SERVICE=foobar",
43 NULL);
44
963ddb91 45 log_struct(LOG_INFO,
de0671ee 46 "MESSAGE=Foobar PID="PID_FMT, getpid(),
963ddb91
LP
47 "FORMAT_STR_TEST=1=%i A=%c 2=%hi 3=%li 4=%lli 1=%p foo=%s 2.5=%g 3.5=%g 4.5=%Lg",
48 (int) 1, 'A', (short) 2, (long int) 3, (long long int) 4, (void*) 1, "foo", (float) 2.5f, (double) 3.5, (long double) 4.5,
49 "SUFFIX=GOT IT",
50 NULL);
51
877d54e9
LP
52 return 0;
53}