Log image size as wel

pull/3641/head
Isaac Connor 2022-11-30 13:01:42 -05:00
parent e11b7d3406
commit 61e5527b63
1 changed files with 2 additions and 2 deletions

View File

@ -65,8 +65,8 @@ Camera::Camera(
pixels = width * height;
imagesize = static_cast<unsigned long long>(height) * linesize;
Debug(2, "New camera id: %d width: %d line size: %d height: %d colours: %d subpixelorder: %d capture: %d",
monitor->Id(), width, linesize, height, colours, subpixelorder, capture);
Debug(2, "New camera id: %d width: %d line size: %d height: %d colours: %d subpixelorder: %d capture: %d, size: %llu",
monitor->Id(), width, linesize, height, colours, subpixelorder, capture, imagesize);
}
Camera::~Camera() {