mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-05-04 09:59:44 -05:00
Improvements to the ScriptLog logging (#3389)
* Restructuring the queueScript function * Don't log the contents of actions that are triggered. Add the ability to do verbose logging in the scriptlog
This commit is contained in:
@@ -187,11 +187,11 @@ RenderableInterpolatedPoints::Interpolation::Interpolation()
|
||||
);
|
||||
// No syncing, as this was triggered from a property change (which happened
|
||||
// based on an already synced script)
|
||||
global::scriptEngine->queueScript(
|
||||
script,
|
||||
scripting::ScriptEngine::ShouldBeSynchronized::No,
|
||||
scripting::ScriptEngine::ShouldSendToRemote::No
|
||||
);
|
||||
global::scriptEngine->queueScript({
|
||||
.code = script,
|
||||
.synchronized = scripting::ScriptEngine::Script::ShouldBeSynchronized::No,
|
||||
.sendToRemote = scripting::ScriptEngine::Script::ShouldSendToRemote::No
|
||||
});
|
||||
};
|
||||
|
||||
interpolateToEnd.onChange([triggerInterpolation, this]() {
|
||||
|
||||
Reference in New Issue
Block a user