Skip to content

Commit

Permalink
More detailed error message
Browse files Browse the repository at this point in the history
  • Loading branch information
kleag committed May 9, 2024
1 parent 29c6fb5 commit 0daa17f
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,8 @@ bool LimaAnalyzer::addPipelineUnit(const std::string& pipeline,
if (! m_d->addPipelineUnit(pipeline, media, jsonGroupString))
{
error = true;
errorMessage = "addPipelineUnit: failed";
errorMessage = std::string("addPipelineUnit failed:") + pipeline + ", "
+ media + ",\n" + jsonGroupString;
return false;
}
return true;
Expand Down

0 comments on commit 0daa17f

Please sign in to comment.