示例#1
0
LogPartition::LogPartition (std::string const& name)
    : mNextLog (headLog)
    , mName (canonicalFileName (name.c_str()))
{
    severity (Journal::kWarning);
    // VFALCO TODO Use an intrusive list.
    headLog = this;
}
示例#2
0
LogPartition::LogPartition (std::string const& name)
    : mNextLog (headLog)
    , mMinSeverity (lsWARNING)
    , mName (canonicalFileName (name.c_str()))
    , m_console (false)
{
    // VFALCO TODO Use an intrusive list.
    headLog = this;
}