Skip to content

Commit

Permalink
Lower the severity of a log message (#47172)
Browse files Browse the repository at this point in the history
This log message can print on the first frame of a platform view and is
not an error.
  • Loading branch information
johnmccutchan authored Oct 20, 2023
1 parent ebd542b commit bda4c45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shell/platform/android/image_external_texture.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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.";
}
}

Expand Down

0 comments on commit bda4c45

Please sign in to comment.