Skip to content

iceoryx_utils/log/logging_free_function_building_block.hpp🔗

Namespaces🔗

Name
iox
building block to easily create free function for logging in a library context
iox::log
iox::log::ffbb

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_LOGGING_FREE_FUNCTION_BUILDING_BLOCK_HPP
#define IOX_UTILS_LOG_LOGGING_FREE_FUNCTION_BUILDING_BLOCK_HPP


#include "iceoryx_utils/log/logger.hpp"
#include "iceoryx_utils/log/logging.hpp"
#include "iceoryx_utils/log/logmanager.hpp"

namespace iox
{
namespace log
{
namespace ffbb
{
template <typename T>
static Logger& ComponentLogger()
{
    static auto& logger = CreateLogger(T::Ctx, T::Description, LogManager::GetLogManager().DefaultLogLevel());
    return logger;
}

template <typename T>
inline LogStream LogFatal() noexcept
{
    return ComponentLogger<T>().LogFatal();
}

template <typename T>
inline LogStream LogError() noexcept
{
    return ComponentLogger<T>().LogError();
}

template <typename T>
inline LogStream LogWarn() noexcept
{
    return ComponentLogger<T>().LogWarn();
}

template <typename T>
inline LogStream LogInfo() noexcept
{
    return ComponentLogger<T>().LogInfo();
}

template <typename T>
inline LogStream LogDebug() noexcept
{
    return ComponentLogger<T>().LogDebug();
}

template <typename T>
inline LogStream LogVerbose() noexcept
{
    return ComponentLogger<T>().LogVerbose();
}
} // namespace ffbb
} // namespace log
} // namespace iox

#endif // IOX_UTILS_LOG_LOGGING_FREE_FUNCTION_BUILDING_BLOCK_HPP

Updated on 17 June 2021 at 11:15:26 CEST