MCPcopy Create free account
hub / github.com/NatronGitHub/Natron / writeToErrorLog_mt_safe

Method writeToErrorLog_mt_safe

Engine/AppManager.cpp:2672–2687  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2670}
2671
2672void
2673AppManager::writeToErrorLog_mt_safe(const QString& context,
2674 const QDateTime& date,
2675 const QString & str,
2676 bool isHtml,
2677 const LogEntry::LogEntryColor& color)
2678{
2679 QMutexLocker l(&_imp->errorLogMutex);
2680 LogEntry e;
2681 e.context = context;
2682 e.date = date;
2683 e.message = str;
2684 e.isHtml = isHtml;
2685 e.color = color;
2686 _imp->errorLog.push_back(e);
2687}
2688
2689void
2690AppManager::showErrorLog()

Callers 14

setNameInternalMethod · 0.80
restoreExpressionsMethod · 0.80
connectNodesMethod · 0.80
Node.cppFile · 0.80
storeKnobsLinksMethod · 0.80
findAndRunScriptFileMethod · 0.80
loadPythonGroupsMethod · 0.80
getGroupInfosInternalFunction · 0.80
vmessageMethod · 0.80
setNameMethod · 0.80

Calls 1

push_backMethod · 0.45

Tested by

no test coverage detected