Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit d728eed

Browse files
committed
remove remaining debug prints
1 parent 7364cc6 commit d728eed

File tree

3 files changed

+0
-4
lines changed

3 files changed

+0
-4
lines changed

flow/layers/container_layer.cc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,6 @@ Layer* MergedContainerLayer::GetCacheableChild() const {
189189
return child_container->layers()[0].get();
190190
}
191191

192-
FML_LOG(INFO) << "Single child layer contains multiple children";
193192
return child_container;
194193
}
195194

flow/layers/image_filter_layer.cc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ void ImageFilterLayer::Paint(PaintContext& context) const {
4141

4242
if (context.raster_cache) {
4343
if (context.raster_cache->Draw(this, *context.leaf_nodes_canvas)) {
44-
FML_LOG(ERROR) << "Rendered filtered output from cache";
4544
return;
4645
}
4746
const SkMatrix& ctm = context.leaf_nodes_canvas->getTotalMatrix();
@@ -52,7 +51,6 @@ void ImageFilterLayer::Paint(PaintContext& context) const {
5251

5352
if (context.raster_cache->Draw(GetCacheableChild(),
5453
*context.leaf_nodes_canvas, &paint)) {
55-
FML_LOG(ERROR) << "Filtered from cached child";
5654
return;
5755
}
5856
}

flow/raster_cache.cc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,6 @@ void RasterCache::Prepare(PrerollContext* context,
141141
entry.access_count++;
142142
entry.used_this_frame = true;
143143
if (!entry.image) {
144-
FML_LOG(ERROR) << "Rasterizing " << layer->unique_id();
145144
entry.image = RasterizeLayer(context, layer, ctm, checkerboard_images_);
146145
}
147146
}

0 commit comments

Comments
 (0)