]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/test/test-log.c
Merge pull request #5432 from keszybz/udev-logging
[thirdparty/systemd.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 assert_cc(LOG_REALM_REMOVE_LEVEL(LOG_REALM_PLUS_LEVEL(LOG_REALM_SYSTEMD, LOG_FTP | LOG_DEBUG))
28 == LOG_REALM_SYSTEMD);
29 assert_cc(LOG_REALM_REMOVE_LEVEL(LOG_REALM_PLUS_LEVEL(LOG_REALM_UDEV, LOG_LOCAL7 | LOG_DEBUG))
30 == LOG_REALM_UDEV);
31 assert_cc((LOG_REALM_PLUS_LEVEL(LOG_REALM_SYSTEMD, LOG_LOCAL3 | LOG_DEBUG) & LOG_FACMASK)
32 == LOG_LOCAL3);
33 assert_cc((LOG_REALM_PLUS_LEVEL(LOG_REALM_UDEV, LOG_USER | LOG_INFO) & LOG_PRIMASK)
34 == LOG_INFO);
35
36 int main(int argc, char* argv[]) {
37
38 log_set_target(LOG_TARGET_CONSOLE);
39 log_open();
40
41 log_struct(LOG_INFO,
42 "MESSAGE=Waldo PID="PID_FMT, getpid(),
43 "SERVICE=piepapo",
44 NULL);
45
46 log_set_target(LOG_TARGET_JOURNAL);
47 log_open();
48
49 log_struct(LOG_INFO,
50 "MESSAGE=Foobar PID="PID_FMT, getpid(),
51 "SERVICE=foobar",
52 NULL);
53
54 log_struct(LOG_INFO,
55 "MESSAGE=Foobar PID="PID_FMT, getpid(),
56 "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",
57 (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,
58 "SUFFIX=GOT IT",
59 NULL);
60
61 return 0;
62 }