Increase debug log level of allocating image

This commit is contained in:
Isaac Connor 2021-04-28 16:13:57 -04:00
parent e53628e0bd
commit 1abadfafa1
1 changed files with 2 additions and 2 deletions

View File

@ -2191,8 +2191,8 @@ int LocalCamera::Capture(ZMPacket &zm_packet) {
} /* prime capture */
if ( !zm_packet.image ) {
Debug(1, "Allocating image");
if (!zm_packet.image) {
Debug(4, "Allocating image");
zm_packet.image = new Image(width, height, colours, subpixelorder);
}