chore(draw_buf): remove unnecessary info logs (#5634)

Signed-off-by: Neo Xu <neo.xu1990@gmail.com>
This commit is contained in:
Neo Xu
2024-02-11 11:05:32 +08:00
committed by GitHub
parent 10978c94c2
commit 7f669001a3

View File

@@ -241,7 +241,7 @@ lv_draw_buf_t * lv_draw_buf_reshape(lv_draw_buf_t * draw_buf, lv_color_format_t
uint32_t size = _calculate_draw_buf_size(w, h, cf, stride);
if(size > draw_buf->data_size) {
LV_LOG_INFO("Draw buf too small for new shape");
LV_LOG_TRACE("Draw buf too small for new shape");
return NULL;
}