Skip to content
Snippets Groups Projects
Commit b893754c authored by Mark Winter's avatar Mark Winter Committed by Eric Wait
Browse files

Output replayable-edits list instead of full data set.

parent 4905e732
No related branches found
No related tags found
Loading
% OutputDebugErrorFile()
% Outputs ReplayEditActions to a file, this should allow for a complete
% reconstruction of an edit set from the original data.
function OutputDebugErrorFile()
global CONSTANTS Log
global CONSTANTS Log ReplayEditActions
errfile = [CONSTANTS.datasetName '_DBGERR_' num2str(length(Log)) '.mat'];
Helper.SaveLEVerState(errfile);
errfile = [CONSTANTS.datasetName '_DBGEDITS_' num2str(length(Log)) '.mat'];
save(errfile, 'ReplayEditActions');
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment