Skip to content

Commit

Permalink
Remove cruft log
Browse files Browse the repository at this point in the history
b/294602640
  • Loading branch information
andrewsavage1 committed Aug 8, 2023
1 parent 79e5003 commit d1d49a6
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion cobalt/dom/html_element.cc
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,6 @@ void HTMLElement::set_scroll_left(float x) {

float throwaway, min = x, max = x;
ui_nav_item_->GetBounds(&throwaway, &min, &throwaway, &max);
LOG(INFO) << "min: " << min << ", max: " << max;
x = math::Clamp(x, min, max);
ui_nav_item_->SetContentOffset(x, top);
}
Expand Down

0 comments on commit d1d49a6

Please sign in to comment.