log4cpp (linux): 无法将消息写入日志文件

log4cpp (linux): can't write message into logfile

我在Linux下使用cpp,我想使用log4cpp。

我尝试在 windows 下使用它和 vs2013,它运行良好。现在我在 Linux 下工作,我遇到了一个问题:
它不适用于文件。这是我的测试代码:

int main(int argc, char* argv[])
{
    fstream logFile;
    logFile.open("log", std::ios::app);
    log4cpp::OstreamAppender* osAppender = new log4cpp::OstreamAppender("osAppender", &logFile);
    // I tried cout as below and it worked, but if I tried as above with a file, it didn't work anymore.
    // I mean the "log" file could be created but the message can't be written down in the file. The file is always empty.
    //log4cpp::OstreamAppender* osAppender = new log4cpp::OstreamAppender("osAppender", &cout);

    osAppender->setLayout(new log4cpp::BasicLayout());

    log4cpp::Category& root = log4cpp::Category::getRoot();
    root.addAppender(osAppender);
    root.setPriority(log4cpp::Priority::DEBUG);
    root.error("Hello log4cpp in aError Message!");
    root.warn("Hello log4cpp in aWarning Message!");
    log4cpp::Category::shutdown();

    cout<<"test";

    return 0;
}

我运行这个测试代码多次,我没有错误,程序成功完成,因为我可以在控制台看到"test"。但是文件总是空的。

顺便说一句,sudo chmod +777 log已经完成了。所以应该不是权限的问题。

问题在这里:

 fstream logFile;
 logFile.open("log", std::ios::app);

我需要的是:
如果没有文件,则创建它并在其中写入消息;
如果已经有该文件,则追加其中的信息。

为了实现这个目标,我们有两种方式:

 ofstream logFile;
 logFile.open("log", std::ios::app);

 fstream logFile;
 logFile.open("log", std::ios::app | std::ios::out);