Subversion Repositories tpanel

Rev

Rev 392 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 392 Rev 398
Line 622... Line 622...
622
 
622
 
623
/********************************************************************/
623
/********************************************************************/
624
 
624
 
625
std::mutex tracer_mutex;
625
std::mutex tracer_mutex;
626
 
626
 
627
TTracer::TTracer(const std::string msg, int line, char *file, threadID_t tid)
627
TTracer::TTracer(const std::string& msg, int line, const char *file, threadID_t tid)
628
    : mThreadID(tid)
628
    : mThreadID(tid)
629
{
629
{
630
    if (!TConfig::isInitialized() || !TStreamError::checkFilter(HLOG_TRACE))
630
    if (!TConfig::isInitialized() || !TStreamError::checkFilter(HLOG_TRACE))
631
        return;
631
        return;
632
 
632