- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用spdlog
。我将其与代码合并,但现在出现以下错误:
....fmt\core.h(1016): error C2338: Cannot format argument. To make type T formattable provide a formatter<T> specialization: https://fmt.dev/latest/api.html#formatting-user-defined-types
....fmt/core.h(1013): note: while compiling class template member function 'int fmt::v6::internal::arg_mapper<Context>::map(...)'
with
[
Context=context
]
....fmt/core.h(1213): note: see reference to function template instantiation 'int fmt::v6::internal::arg_mapper<Context>::map(...)' being compiled
with
[
Context=context
]
....fmt/core.h(1027): note: see reference to class template instantiation 'fmt::v6::internal::arg_mapper<Context>' being compiled
with
[
Context=context
]
....fmt/core.h(1198): note: see reference to alias template instantiation 'fmt::v6::internal::mapped_type_constant<int,context>' being compiled
....fmt/core.h(1342): note: see reference to function template instantiation 'unsigned __int64 fmt::v6::internal::encode_types<Context,int,>(void)' being compiled
with
[
Context=context
]
....fmt/format.h(3375): note: see reference to class template instantiation 'fmt::v6::format_arg_store<context,int>' being compiled
....spdlog/details/fmt_helper.h(49): note: see reference to function template instantiation 'std::back_insert_iterator<fmt::v6::internal::buffer<char>> fmt::v6::format_to<char[6],int&,250,char>(fmt::v6::basic_memory_buffer<char,250,std::allocator<char>> &,const S (&),int &)' being compiled
with
[
S=char [6]
]
inline void pad2(int n, memory_buf_t &dest)
{
if (n >= 0 && n < 100) // 0-99
{
dest.push_back(static_cast<char>('0' + n / 10));
dest.push_back(static_cast<char>('0' + n % 10));
}
else // unlikely, but just in case, let fmt deal with it
{
fmt::format_to(dest, "{:02}", n); // <--- HERE
}
}
spdlog
调用后,我将其范围缩小到:
spdlog::info("Foo{}", Point{1, 2});
Point
是我自己的 namespace 中的我自己的类。我为它提供了一种打印自身的方法:
template<typename OStream>
OStream &operator<<(OStream &os, const Point &p) {
return os << "[" << p.x << ", " << p.y << "]";
}
最佳答案
spdlog使用{fmt}
库格式化输出文本,并且需要<fmt/ostream.h>
头文件to be included才能启用类似std::ostream
的支持。
不管使用{fmt}
库的外部实现,还是使用spdlog源代码本身的实现,都有一个特殊的头<spdlog/fmt/ostr.h>
,其中包括正在使用的文件版本。
一旦包含,spdlog应该能够使用您的operator<<
。
另外,您可以创建一个自定义格式器,该格式器还可以解析格式字符串:
template <>
struct fmt::formatter<Point> {
constexpr auto parse(format_parse_context& ctx) {
return ctx.end();
}
template <typename Context>
auto format(const Point& p, Context& ctx) {
return format_to(ctx.out(), "[{}, {}]", p.x, p.y);
}
};
关于c++ - 无法在spdlog中格式化参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62320177/
我正在使用 spdlog 为 Visual Studio 中的托管和非托管代码运行日志。出于这个原因,我编写了在后台使用 spdlog 的 shell 类。 但是,我的单元测试遇到了问题。我的单元测试
我正在尝试在 hello world 中使用 spdlog 库。 #include "spdlog/spdlog.h" int main() { return 0; } 因为它是“仅 head
我正在进行 spdlog 的最新提交(有一个关于 std 输出的 issue,显然已解决),并且正在将我的输出从 std::cout 切换到 spdlog。 我的谷歌测试重定向 std::cout 所
我正在进行 spdlog 的最新提交(有一个关于 std 输出的 issue,显然已解决),并且正在将我的输出从 std::cout 切换到 spdlog。 我的谷歌测试重定向 std::cout 所
我需要在某些代码之前关闭 spdlog 级别,然后将其返回到之前的值。 如何在关闭之前获得当前级别? 最佳答案 要获取记录器的当前级别,请使用 logger::level() . 要设置新级别,请使用
昨天我开始将 spdlog 包含到我的个人项目中以用于日志记录。到目前为止,我在使库包含正常工作方面遇到了一些问题,但这些问题现在已完全解决。 现在一切都编译得很好,找到了所有 header ,但是当
使用 spdlog , 如何更改每日记录器的默认滚动时间? 在以下示例中,滚动仅在午夜发生: auto logger = spd::daily_logger_st("my_logger", "fl_l
我正在使用 spdlog 记录所有消息。我的日志模式是 JSON 格式。我在所有日志调用中手动转义消息。有什么方法可以在 spdlog 层自动转义消息吗? 手动转义示例: spdlog::info(e
我觉得问这个问题就像个傻瓜,因为这是我能想到的最微不足道的例子,但它阻碍了我。 我已经实现了一个非常基本的控制台和文件记录器: auto logger = spdlog::basic_logg
我正在尝试使用 spdlog在涉及windows下图书馆的项目中。我创建了两个记录器。一个用于使用库的应用程序,一个用于库本身。图书馆的记录器是从应用程序创建的,但是当图书馆想要添加一条消息时,它崩溃
我正在尝试将 spdlog 用作日志记录库,但我不想使用我的包管理器 (apt) 来安装它。我已经将 include 下的 spdlog 目录复制到我的项目目录的根目录中,但是当我尝试编译时出现包含错
我正在我的应用程序中创建 C++ 库模块。为了进行日志记录,我使用 spdlog .但是在生产环境中,我不希望我的 lib 模块进行任何日志记录。实现打开/关闭的一种方法是在我的代码中添加#ifdef
我在我的库中使用 spdlog 和 gtest。我需要将一些日志(不是 gtest 日志)从测试执行保存到文件。下面是创建记录器的代码: void createLogger() { auto
我正在使用 spdlog 在 Visual Studio 项目中进行日志记录。我在 Qt creator 中使用了相同的项目,然后 spdlog 日志记录不输出任何内容。但 std::cout 仍然有
这个问题在这里已经有了答案: What is an undefined reference/unresolved external symbol error and how do I fix it?
我正在开发 Vulkan API 的渲染器。我在使用 CMake 和 conan 包管理器正确设置项目时遇到了很大的麻烦。让我们看一下我的 conanfile.py 的依赖设置: from conan
我刚刚开始使用 spdlog 来改进我们的日志记录。我们的日志记录非常基础,所以我只是几乎逐字复制“多接收器”示例以记录到文件和控制台。 但是,即使完全按照示例进行操作,我也会得到: 错误 C2338
我是一名优秀的程序员,十分优秀!