File: log.h

package info (click to toggle)
openssl 3.5.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 142,688 kB
  • sloc: ansic: 672,420; perl: 233,226; asm: 6,546; sh: 1,569; pascal: 975; python: 596; makefile: 538; lisp: 35; ruby: 16; cpp: 10; sed: 6
file content (50 lines) | stat: -rw-r--r-- 1,614 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*
 * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
 *
 * Licensed under the Apache License 2.0 (the "License").  You may not use
 * this file except in compliance with the License.  You can obtain a copy
 * in the file LICENSE in the source distribution or at
 * https://www.openssl.org/source/license.html
 */

#ifndef OSSL_APPS_LOG_H
#define OSSL_APPS_LOG_H

#include <openssl/bio.h>
#if !defined(OPENSSL_SYS_VMS) && !defined(OPENSSL_SYS_WINDOWS) \
    && !defined(OPENSSL_NO_SOCK) && !defined(OPENSSL_NO_POSIX_IO)
#include <syslog.h>
#else
#define LOG_EMERG 0
#define LOG_ALERT 1
#define LOG_CRIT 2
#define LOG_ERR 3
#define LOG_WARNING 4
#define LOG_NOTICE 5
#define LOG_INFO 6
#define LOG_DEBUG 7
#endif

#undef LOG_TRACE
#define LOG_TRACE (LOG_DEBUG + 1)

int log_set_verbosity(const char *prog, int level);
int log_get_verbosity(void);

/*-
 * Output a message using the trace API with the given category
 * if the category is >= 0 and tracing is enabled.
 * Log the message to syslog if multi-threaded HTTP_DAEMON, else to bio_err
 * if the verbosity is sufficient for the given level of severity.
 * Yet cannot do both types of output in strict ANSI mode.
 * category: trace category as defined in trace.h, or -1
 * prog: the name of the current app, or NULL
 * level: the severity of the message, e.g., LOG_ERR
 * fmt: message format, which should not include a trailing newline
 * ...: potential extra parameters like with printf()
 * returns nothing
 */
void trace_log_message(int category,
    const char *prog, int level, const char *fmt, ...);

#endif /* OSSL_APPS_LOG_H */