#include <spdlog/fmt/ostr.h>
#include <spdlog/spdlog.h>
#include <type_traits>
#include <spdlog/fmt/bundled/chrono.h>
|
|
using | BipedalLocomotion::TextLogging::Logger = spdlog::logger |
| |
|
| enum class | Verbosity : std::underlying_type< spdlog::level::level_enum >::type {
Trace = static_cast<std::underlying_type<spdlog::level::level_enum>::type>(spdlog::level::level_enum::trace)
, Debug = static_cast<std::underlying_type<spdlog::level::level_enum>::type>(spdlog::level::level_enum::debug)
, Info = static_cast<std::underlying_type<spdlog::level::level_enum>::type>(spdlog::level::level_enum::info)
, Warn = static_cast<std::underlying_type<spdlog::level::level_enum>::type>(spdlog::level::level_enum::warn)
,
Err = static_cast<std::underlying_type<spdlog::level::level_enum>::type>(spdlog::level::level_enum::err)
, Critical = static_cast<std::underlying_type<spdlog::level::level_enum>::type>(spdlog::level::level_enum::critical)
, Off = static_cast<std::underlying_type<spdlog::level::level_enum>::type>(spdlog::level::level_enum::off)
} |
| |
- Authors
- Giulio Romualdi
- Copyright
- 2021 Istituto Italiano di Tecnologia (IIT). This software may be modified and distributed under the terms of the BSD-3-Clause license.
◆ setVerbosity()
| void BipedalLocomotion::TextLogging::setVerbosity |
( |
const TextLogging::Verbosity |
verbosity | ) |
|
Set the logger verbosity.
- Parameters
-
| verbosity | The desired verbosity level. |