我尝试了来自pantheios的例子来登录文件,但无法使其工作。 消息在控制台中正确显示,但未创建日志文件。 我尝试更改严重性级别,因为我看到了thread,但没有人工作。
以下是代码:
/* Pantheios Header Files */
#include <pantheios/pantheios.hpp> // Pantheios C++ main header
#include <pantheios/inserters/args.hpp> // for pantheios::args
#include <pantheios/inserters/exception.hpp> // for pantheios::exception
#include <pantheios/backends/bec.file.h> // be.file header
/* Standard C/C++ Header Files */
#include <exception> // for std::exception
#include <new> // for std::bad_alloc
#include <string> // for std::string
#include <stdlib.h> // for exit codes
/* ////////////////////////////////////////////////////////////////////// */
/* Define the stock front-end process identity, so that it links when using
* fe.N, fe.simple, etc. */
PANTHEIOS_EXTERN_C const PAN_CHAR_T PANTHEIOS_FE_PROCESS_IDENTITY[] = PANTHEIOS_LITERAL_STRING("example.cpp.file");
/* ////////////////////////////////////////////////////////////////////// */
#define PSTR(x) PANTHEIOS_LITERAL_STRING(x)
/* ////////////////////////////////////////////////////////////////////// */
int main(int argc, char **argv)
{
try
{
#ifndef PANTHEIOS_USE_WIDE_STRINGS
pantheios::log_DEBUG("main(", pantheios::args(argc, argv), ")");
#else /* ? !PANTHEIOS_USE_WIDE_STRINGS */
STLSOFT_SUPPRESS_UNUSED(argc); STLSOFT_SUPPRESS_UNUSED(argv);
#endif /* !PANTHEIOS_USE_WIDE_STRINGS */
pantheios::log_NOTICE(PSTR("stmt 1"));
// Set the file name for the local back-end, truncating the
// file's existing contents, if any.
pantheios_be_file_setFilePath(PSTR("log.local"), PANTHEIOS_BE_FILE_F_TRUNCATE, PANTHEIOS_BE_FILE_F_TRUNCATE, PANTHEIOS_BEID_LOCAL);
pantheios::log_NOTICE(PSTR("stmt 2"));
// Set the file name for the remote back-end.
pantheios_be_file_setFilePath(PSTR("log.remote"), PANTHEIOS_BEID_REMOTE);
pantheios::log_NOTICE(PSTR("stmt 3"));
// Set the file name for all back-ends.
pantheios_be_file_setFilePath(PSTR("log.all"));
pantheios::log_NOTICE(PSTR("stmt 4"));
pantheios::log_DEBUG(PSTR("exiting main()"));
system("pause");
return EXIT_SUCCESS;
}
catch(std::bad_alloc&)
{
pantheios::log(pantheios::alert, PSTR("out of memory"));
}
catch(std::exception& x)
{
pantheios::log_CRITICAL(PSTR("Exception: "), pantheios::exception(x));
}
catch(...)
{
pantheios::logputs(pantheios::emergency, PSTR("Unexpected unknown error"));
}
return EXIT_FAILURE;
}
/* ///////////////////////////// end of file //////////////////////////// */
我有一个“include_pantheios.cpp”文件用于隐式链接。这是:
/* Pantheios Header Files */
#include <pantheios/implicit_link/core.h>
#include <pantheios/implicit_link/fe.simple.h>
#include <platformstl/platformstl.h>
#include <pantheios/implicit_link/be.file.h>
#if ( defined(UNIX) || \
defined(unix))&& \
( defined(_WIN32) || \
defined(_WIN64))
# include <unixem/implicit_link.h>
#endif /* _WIN32 || _WIN64 */
有人看到我的问题来自哪里吗? 提前谢谢,
文森特
答案 0 :(得分:4)
我认为你的一些困惑来自于做太多的例子:它显示了本地和远程文件。一个更简单的例子是:
// Headers for main()
#include <pantheios/pantheios.hpp>
#include <pantheios/backends/bec.file.h>
// Headers for implicit linking
#include <pantheios/implicit_link/core.h>
#include <pantheios/implicit_link/fe.simple.h>
#include <pantheios/implicit_link/be.file.h>
int main() {
pantheios::log_NOTICE("log-1"); // save until log file set
pantheios_be_file_setFilePath("mylogfile"); // sets log file; write "log-1" stmt
pantheios::log_NOTICE("log-2"); // write "log-2" stmt
pantheios_be_file_setFilePath(NULL); // close "mylogfile"
pantheios::log_NOTICE("log-3"); // save until log file set
pantheios_be_file_setFilePath("mylogfile2"); // sets log file; write "log-3" stmt
pantheios::log_NOTICE("log-4"); // write "log-4" stmt
} // closes "mylogfile2" during program closedown
原始代码的问题,我认为它来自Pantheios示例程序,它试图说明如何使用本地和远程后端同时试图说明如何使用be.file后端。
忘掉所有不同的后端,专注于be.file特定的东西。
HTH
答案 1 :(得分:3)
我遇到了同样的问题,对于未来的人来说,问题是链接库的顺序
Pantheios论坛: https://sourceforge.net/projects/pantheios/forums/forum/475314/topic/5313841/index/page/1
我只是在pantheios.1.be.fprintf.gcc44之前链接pantheios.1.be.file.gcc44
答案 2 :(得分:2)
我认为问题是你链接的顺序,但我不太清楚你发布的代码是如何实现的。
我遇到了同样的问题,我意识到这是因为我连接了两个后端:file和fprintf。更具体地说,这是因为我在文件之前链接了fprintf 。当我首先将订单切换到链接文件时,它将创建并使用日志文件,但当我注释掉pantheios_be_file_setFilePath时,不输出到stdout。因此,显然首先要链接的是唯一可以工作的(查找多个后端)。
答案 3 :(得分:0)
据我所知,这段代码与库提供的文件库存后端样本完全相同,所以它应该可以工作。
您如何确定未写入日志文件?这些是相对路径 - 尝试使用绝对路径以确保您正在查找正确的位置。
如果所有其他方法都失败了,您可以通过代码进行调试(在设置文件路径之后)以找出没有写出任何内容的原因。