Skip to main content
  • Home
  • login
  • Browse the archive

    swh mirror partner logo
swh logo
SoftwareHeritage
Software
Heritage
Mirror
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help

  • 484409c
  • /
  • log.h
Raw File
Permalinks

To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used.
Select below a type of object currently browsed in order to display its associated SWHID and permalink.

  • content
  • directory
content badge Iframe embedding
swh:1:cnt:1b8b58d41acf66556ed518c99949ee018441d70f
directory badge Iframe embedding
swh:1:dir:484409c5e5f4efa6cd00a361eb6ede989e4d98a1
log.h
/*
 * 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 */

ENEA — Copyright (C), ENEA. License: GNU AGPLv3+.
Legal notes  ::  JavaScript license information ::  Web API

back to top