iceoryx_utils/log/logger.hpp🔗
Namespaces🔗
Name |
---|
iox building block to easily create free function for logging in a library context |
iox::log |
Classes🔗
Name | |
---|---|
class | iox::log::Logger |
Source code🔗
// Copyright (c) 2019 by Robert Bosch GmbH. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// SPDX-License-Identifier: Apache-2.0
#ifndef IOX_UTILS_LOG_LOGGER_HPP
#define IOX_UTILS_LOG_LOGGER_HPP
#include "iceoryx_utils/log/logcommon.hpp"
#include "iceoryx_utils/log/logstream.hpp"
#include <atomic>
#include <chrono>
#include <functional>
#include <string>
namespace iox
{
namespace log
{
class Logger
{
friend class LogManager;
friend class LogStream;
public:
Logger(Logger&& other);
Logger& operator=(Logger&& rhs);
Logger(const Logger& other) = delete;
Logger& operator=(const Logger& rhs) = delete;
void SetLogLevel(const LogLevel logLevel) noexcept;
void SetLogMode(const LogMode logMode) noexcept;
bool IsEnabled(const LogLevel logLevel) const noexcept;
LogStream LogFatal() noexcept;
LogStream LogError() noexcept;
LogStream LogWarn() noexcept;
LogStream LogInfo() noexcept;
LogStream LogDebug() noexcept;
LogStream LogVerbose() noexcept;
protected:
Logger(std::string ctxId, std::string ctxDescription, LogLevel appLogLevel);
// virtual because of Logger_Mock
virtual void Log(const LogEntry& entry) const;
private:
void Print(const LogEntry entry) const;
std::atomic<LogLevel> m_logLevel{LogLevel::kVerbose};
std::atomic<LogMode> m_logMode{LogMode::kConsole};
};
} // namespace log
} // namespace iox
#endif // IOX_UTILS_LOG_LOGGER_HPP
Updated on 31 May 2022 at 15:29:15 CEST