Skip to content

Commit

Permalink
Remove debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
iizukanao committed Jul 24, 2022
1 parent 9b73305 commit a938305
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions libpicam/picam.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -292,9 +292,7 @@ int Picam::camera_set_white_balance(char *wb) {
} else {
libcamera::controls::AwbModeEnum control = libcamera::controls::AwbAuto;
for (unsigned int i = 0; i < sizeof(white_balance_options) / sizeof(white_balance_option); i++) {
log_debug("strcmp(%s,%s)=%d\n", white_balance_options[i].name, wb, strcmp(white_balance_options[i].name, wb));
if (strcmp(white_balance_options[i].name, wb) == 0) {
log_debug("found\n");
control = white_balance_options[i].control;
break;
}
Expand Down

0 comments on commit a938305

Please sign in to comment.