Blame


1 3efd8e31 2022-10-23 thomas /*
2 3efd8e31 2022-10-23 thomas * Copyright (c) 2022 Stefan Sperling <stsp@openbsd.org>
3 3efd8e31 2022-10-23 thomas *
4 3efd8e31 2022-10-23 thomas * Permission to use, copy, modify, and distribute this software for any
5 3efd8e31 2022-10-23 thomas * purpose with or without fee is hereby granted, provided that the above
6 3efd8e31 2022-10-23 thomas * copyright notice and this permission notice appear in all copies.
7 3efd8e31 2022-10-23 thomas *
8 3efd8e31 2022-10-23 thomas * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 3efd8e31 2022-10-23 thomas * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 3efd8e31 2022-10-23 thomas * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 3efd8e31 2022-10-23 thomas * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 3efd8e31 2022-10-23 thomas * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 3efd8e31 2022-10-23 thomas * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 3efd8e31 2022-10-23 thomas * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 3efd8e31 2022-10-23 thomas */
16 3efd8e31 2022-10-23 thomas
17 2f1efc18 2023-08-29 thomas #include "got_compat.h"
18 2f1efc18 2023-08-29 thomas
19 3efd8e31 2022-10-23 thomas void log_init(int, int);
20 3efd8e31 2022-10-23 thomas void log_procinit(const char *);
21 3efd8e31 2022-10-23 thomas void log_setverbose(int);
22 3efd8e31 2022-10-23 thomas int log_getverbose(void);
23 3efd8e31 2022-10-23 thomas void log_warn(const char *, ...)
24 3efd8e31 2022-10-23 thomas __attribute__((__format__ (printf, 1, 2)));
25 3efd8e31 2022-10-23 thomas void log_warnx(const char *, ...)
26 3efd8e31 2022-10-23 thomas __attribute__((__format__ (printf, 1, 2)));
27 3efd8e31 2022-10-23 thomas void log_info(const char *, ...)
28 3efd8e31 2022-10-23 thomas __attribute__((__format__ (printf, 1, 2)));
29 3efd8e31 2022-10-23 thomas void log_debug(const char *, ...)
30 3efd8e31 2022-10-23 thomas __attribute__((__format__ (printf, 1, 2)));
31 3efd8e31 2022-10-23 thomas void logit(int, const char *, ...)
32 3efd8e31 2022-10-23 thomas __attribute__((__format__ (printf, 2, 3)));
33 3efd8e31 2022-10-23 thomas void vlog(int, const char *, va_list)
34 3efd8e31 2022-10-23 thomas __attribute__((__format__ (printf, 2, 0)));
35 3efd8e31 2022-10-23 thomas __dead void fatal(const char *, ...)
36 3efd8e31 2022-10-23 thomas __attribute__((__format__ (printf, 1, 2)));
37 3efd8e31 2022-10-23 thomas __dead void fatalx(const char *, ...)
38 3efd8e31 2022-10-23 thomas __attribute__((__format__ (printf, 1, 2)));