Skip to content
Snippets Groups Projects
Commit cb8a4b71 authored by Nicolas Pope's avatar Nicolas Pope
Browse files

Trivial log output change

parent 08953f12
No related branches found
No related tags found
1 merge request!316Resolves #343 GUI and Frame Refactor
Pipeline #28333 passed
...@@ -218,7 +218,7 @@ bool PylonDevice::get(cv::cuda::GpuMat &l_out, cv::cuda::GpuMat &r_out, cv::cuda ...@@ -218,7 +218,7 @@ bool PylonDevice::get(cv::cuda::GpuMat &l_out, cv::cuda::GpuMat &r_out, cv::cuda
Pylon::CGrabResultPtr tmp_result; Pylon::CGrabResultPtr tmp_result;
lcam_->RetrieveResult(0, tmp_result, Pylon::TimeoutHandling_Return); lcam_->RetrieveResult(0, tmp_result, Pylon::TimeoutHandling_Return);
rcam_->RetrieveResult(0, tmp_result, Pylon::TimeoutHandling_Return); rcam_->RetrieveResult(0, tmp_result, Pylon::TimeoutHandling_Return);
} else if (rcount > 1 || lcount > 1) LOG(ERROR) << "Buffers out of sync"; } else if (rcount > 1 || lcount > 1) LOG(ERROR) << "Buffers out of sync by " << std::max(rcount, lcount);
} else { } else {
if (lcam_->NumReadyBuffers.GetValue() == 0) { if (lcam_->NumReadyBuffers.GetValue() == 0) {
LOG(INFO) << "Retrieve failed for L"; LOG(INFO) << "Retrieve failed for L";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment