<div dir="ltr"><div dir="ltr">Hi David,<div><br></div><div>Thank you for your patch.</div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Tue, 15 Jun 2021 at 11:51, David Plowman <<a href="mailto:david.plowman@raspberrypi.com">david.plowman@raspberrypi.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Warnings about the lack of AWB status results are demoted to being<br>
just "Debug". With monochrome sensors becoming more common this would<br>
otherwise overwhelm the console output, and in practice nothing is<br>
really lost as it is normally very evident if AWB is failing to run.<br>
<br>
Signed-off-by: David Plowman <<a href="mailto:david.plowman@raspberrypi.com" target="_blank">david.plowman@raspberrypi.com</a>><br></blockquote><div><br></div><div>Looks good!</div><div><br></div><div>Reviewed-by: Naushir Patuck <<a href="mailto:naush@raspberrypi.com">naush@raspberrypi.com</a>></div><div><br></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
---<br>
 src/ipa/raspberrypi/controller/rpi/agc.cpp  | 2 +-<br>
 src/ipa/raspberrypi/controller/rpi/alsc.cpp | 2 +-<br>
 2 files changed, 2 insertions(+), 2 deletions(-)<br>
<br>
diff --git a/src/ipa/raspberrypi/controller/rpi/agc.cpp b/src/ipa/raspberrypi/controller/rpi/agc.cpp<br>
index 55e80ac7..2c95f287 100644<br>
--- a/src/ipa/raspberrypi/controller/rpi/agc.cpp<br>
+++ b/src/ipa/raspberrypi/controller/rpi/agc.cpp<br>
@@ -481,7 +481,7 @@ void Agc::fetchAwbStatus(Metadata *image_metadata)<br>
        awb_.gain_g = 1.0;<br>
        awb_.gain_b = 1.0;<br>
        if (image_metadata->Get("awb.status", awb_) != 0)<br>
-               LOG(RPiAgc, Warning) << "Agc: no AWB status found";<br>
+               LOG(RPiAgc, Debug) << "Agc: no AWB status found";<br>
 }<br>
<br>
 static double compute_initial_Y(bcm2835_isp_stats *stats, AwbStatus const &awb,<br>
diff --git a/src/ipa/raspberrypi/controller/rpi/alsc.cpp b/src/ipa/raspberrypi/controller/rpi/alsc.cpp<br>
index b0d24aa2..c58ef7d0 100644<br>
--- a/src/ipa/raspberrypi/controller/rpi/alsc.cpp<br>
+++ b/src/ipa/raspberrypi/controller/rpi/alsc.cpp<br>
@@ -267,7 +267,7 @@ double get_ct(Metadata *metadata, double default_ct)<br>
        AwbStatus awb_status;<br>
        awb_status.temperature_K = default_ct; // in case nothing found<br>
        if (metadata->Get("awb.status", awb_status) != 0)<br>
-               LOG(RPiAlsc, Warning) << "no AWB results found, using "<br>
+               LOG(RPiAlsc, Debug) << "no AWB results found, using "<br>
                                      << awb_status.temperature_K;<br>
        else<br>
                LOG(RPiAlsc, Debug) << "AWB results found, using "<br>
-- <br>
2.20.1<br>
<br>
</blockquote></div></div>