Skip to content
Snippets Groups Projects
Commit 58f4a26c authored by luyikei's avatar luyikei
Browse files

SequenceWorkflow: Fix and improve wrong log messages

Sorry, this was a very bad mistake....
parent dcfb3625
No related branches found
No related tags found
No related merge requests found
......@@ -177,7 +177,7 @@ SequenceWorkflow::linkClips( const QUuid& uuidA, const QUuid& uuidB )
auto clipB = clip( uuidB );
if ( !clipA || !clipB )
{
vlmcCritical() << "Couldn't unlink clips: " << uuidA << " " << uuidB;
vlmcCritical() << "Couldn't link clips: " << uuidA << " and " << uuidB;
return false;
}
clipA->setLinkedClipUuid( clipB->uuid() );
......@@ -194,7 +194,7 @@ SequenceWorkflow::unlinkClips( const QUuid& uuidA, const QUuid& uuidB )
auto clipB = clip( uuidB );
if ( !clipA || !clipB )
{
vlmcCritical() << "Couldn't link clips " << uuidA << " " << uuidB;
vlmcCritical() << "Couldn't unlink clips: " << uuidA << " and " << uuidB;
return false;
}
clipA->setLinked( false );
......
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