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

Method writeToErrorLog_mt_safe

Engine/AppManager.cpp:2734–2749  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2732}
2733
2734void
2735AppManager::writeToErrorLog_mt_safe(const QString& context,
2736 const QDateTime& date,
2737 const QString & str,
2738 bool isHtml,
2739 const LogEntry::LogEntryColor& color)
2740{
2741 QMutexLocker l(&_imp->errorLogMutex);
2742 LogEntry e;
2743 e.context = context;
2744 e.date = date;
2745 e.message = str;
2746 e.isHtml = isHtml;
2747 e.color = color;
2748 _imp->errorLog.push_back(e);
2749}
2750
2751void
2752AppManager::showErrorLog()

Callers 14

restoreExpressionsMethod · 0.80
connectNodesMethod · 0.80
restoreKnobsLinksMethod · 0.80
setNameInternalMethod · 0.80
messageMethod · 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