Lower the severity of a log message (flutter/engine#47172)

This log message can print on the first frame of a platform view and is
not an error.
This commit is contained in:
John McCutchan 2023-10-20 13:11:59 -07:00 committed by GitHub
parent e55aecc152
commit 5f0a787cdf

View File

@ -42,7 +42,7 @@ void ImageExternalTexture::Paint(PaintContext& context,
flutter::DlCanvas::SrcRectConstraint::kStrict // enforce edges
);
} else {
FML_LOG(ERROR) << "No DlImage available for ImageExternalTexture to paint.";
FML_LOG(INFO) << "No DlImage available for ImageExternalTexture to paint.";
}
}