libcamera v0.0.0+3423-a7ab5ef1
Supporting cameras in Linux since 2019
logging.h
Go to the documentation of this file.
1/* SPDX-License-Identifier: LGPL-2.1-or-later */
2/*
3 * Copyright (C) 2019, Google Inc.
4 *
5 * logging.h - Logging infrastructure
6 */
7
8#pragma once
9
10namespace libcamera {
11
17};
18
19int logSetFile(const char *path);
20int logSetStream(std::ostream *stream);
21int logSetTarget(LoggingTarget target);
22void logSetLevel(const char *category, const char *level);
23
24} /* namespace libcamera */
Top-level libcamera namespace.
Definition: backtrace.h:17
void logSetLevel(const char *category, const char *level)
Set the log level.
Definition: log.cpp:370
int logSetTarget(LoggingTarget target)
Set the logging target.
Definition: log.cpp:350
int logSetStream(std::ostream *stream)
Direct logging to a stream.
Definition: log.cpp:327
LoggingTarget
Log destination type.
Definition: logging.h:12
@ LoggingTargetStream
Log to stream.
Definition: logging.h:16
@ LoggingTargetFile
Log to file.
Definition: logging.h:15
@ LoggingTargetNone
No logging destination.
Definition: logging.h:13
@ LoggingTargetSyslog
Log to syslog.
Definition: logging.h:14
int logSetFile(const char *path)
Direct logging to a file.
Definition: log.cpp:310