libcamera
v0.7.2
Supporting cameras in Linux since 2019
Toggle main menu visibility
Loading...
Searching...
No Matches
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 infrastructure
6
*/
7
8
#pragma once
9
10
#include <ostream>
11
12
namespace
libcamera
{
13
14
enum
LoggingTarget
{
15
LoggingTargetNone
,
16
LoggingTargetSyslog
,
17
LoggingTargetFile
,
18
LoggingTargetStream
,
19
};
20
21
int
logSetFile
(
const
char
*path,
bool
color =
false
);
22
int
logSetStream
(std::ostream *stream,
bool
color =
false
);
23
int
logSetTarget
(
LoggingTarget
target);
24
void
logSetLevel
(
const
char
*category,
const
char
*level);
25
26
}
/* namespace libcamera */
libcamera
Top-level libcamera namespace.
Definition
backtrace.h:17
libcamera::logSetStream
int logSetStream(std::ostream *stream, bool color=false)
Direct logging to a stream.
Definition
log.cpp:397
libcamera::logSetLevel
void logSetLevel(const char *category, const char *level)
Set the log level.
Definition
log.cpp:440
libcamera::logSetFile
int logSetFile(const char *path, bool color=false)
Direct logging to a file.
Definition
log.cpp:374
libcamera::logSetTarget
int logSetTarget(LoggingTarget target)
Set the logging target.
Definition
log.cpp:420
libcamera::LoggingTarget
LoggingTarget
Log destination type.
Definition
logging.h:14
libcamera::LoggingTargetFile
@ LoggingTargetFile
Log to file.
Definition
logging.h:17
libcamera::LoggingTargetNone
@ LoggingTargetNone
No logging destination.
Definition
logging.h:15
libcamera::LoggingTargetSyslog
@ LoggingTargetSyslog
Log to syslog.
Definition
logging.h:16
libcamera::LoggingTargetStream
@ LoggingTargetStream
Log to stream.
Definition
logging.h:18
include
libcamera
logging.h
Generated by
1.18.0