2023-03-06 14:42:04 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
// Copyright The Music Player Daemon Project
|
2013-12-15 17:35:33 +01:00
|
|
|
|
|
|
|
#ifndef MPD_LOG_BACKEND_HXX
|
|
|
|
#define MPD_LOG_BACKEND_HXX
|
|
|
|
|
|
|
|
#include "LogLevel.hxx"
|
|
|
|
|
|
|
|
void
|
2017-05-16 07:00:53 +02:00
|
|
|
SetLogThreshold(LogLevel _threshold) noexcept;
|
2013-12-15 17:35:33 +01:00
|
|
|
|
|
|
|
void
|
2017-05-16 07:00:53 +02:00
|
|
|
EnableLogTimestamp() noexcept;
|
2013-12-15 17:35:33 +01:00
|
|
|
|
|
|
|
void
|
2017-05-16 07:00:53 +02:00
|
|
|
LogInitSysLog() noexcept;
|
2013-12-15 17:35:33 +01:00
|
|
|
|
|
|
|
void
|
2017-05-16 07:00:53 +02:00
|
|
|
LogFinishSysLog() noexcept;
|
2013-12-15 17:35:33 +01:00
|
|
|
|
|
|
|
#endif /* LOG_H */
|