Add diagnostics for proxy toggle synchronization
Add temporary qDebug logging to Footage, ProjectCopier, RenderWorkerPool, and TimelineWidget to trace why Use Proxy cannot be toggled and why proxy footage may still be used after disabling.
This commit is contained in:
@@ -573,8 +573,12 @@ bool RenderWorkerPool::PrepareJob(RenderTicketPtr ticket,
|
||||
auto it = graph_cache_.find(project_uuid);
|
||||
if (it != graph_cache_.end() && !project->is_modified()) {
|
||||
graph_path = it->path;
|
||||
qDebug() << "RenderWorkerPool::PrepareJob: using cached graph snapshot"
|
||||
<< graph_path;
|
||||
} else {
|
||||
if (it != graph_cache_.end()) {
|
||||
qDebug() << "RenderWorkerPool::PrepareJob: graph stale, rewriting"
|
||||
<< project->is_modified();
|
||||
CleanupGraphFile(it->path);
|
||||
graph_cache_.erase(it);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user