chiark / gitweb /
ae9e113efba739e2274088137f517a1a571f13b0
[elogind.git] / src / test / test-log.c
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
23 #include "format-util.h"
24 #include "log.h"
25 #include "util.h"
26
27 int main(int argc, char* argv[]) {
28
29         log_set_target(LOG_TARGET_CONSOLE);
30         log_open();
31
32         log_struct(LOG_INFO,
33                    "MESSAGE=Waldo PID="PID_FMT, getpid(),
34                    "SERVICE=piepapo",
35                    NULL);
36
37         log_set_target(LOG_TARGET_JOURNAL);
38         log_open();
39
40         log_struct(LOG_INFO,
41                    "MESSAGE=Foobar PID="PID_FMT, getpid(),
42                    "SERVICE=foobar",
43                    NULL);
44
45         log_struct(LOG_INFO,
46                    "MESSAGE=Foobar PID="PID_FMT, getpid(),
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
52         return 0;
53 }