log4cplus:ERROR 在默认上下文被销毁后重新初始化它
log4cplus:ERROR Re-initializing default context after it has already been destroyed
我正在 运行ning Win32 应用程序(它是基于 google 测试的单元测试)。在 运行 结束时,打印测试摘要时,出现以下故障:
log4cplus:ERROR Re-initializing default context after it has already been destroyed.
The memory will be leaked.
看来log4cplus的默认上下文已经被破坏了。
知道如何在打印完我的所有消息之前防止它被破坏吗?
我认为您正在从 static/global 对象的 dtor 中记录,这些对象在 main()
退出后被调用。 log4cplus 不支持此功能。不支持。
我正在 运行ning Win32 应用程序(它是基于 google 测试的单元测试)。在 运行 结束时,打印测试摘要时,出现以下故障:
log4cplus:ERROR Re-initializing default context after it has already been destroyed.
The memory will be leaked.
看来log4cplus的默认上下文已经被破坏了。 知道如何在打印完我的所有消息之前防止它被破坏吗?
我认为您正在从 static/global 对象的 dtor 中记录,这些对象在 main()
退出后被调用。 log4cplus 不支持此功能。不支持。