Remove extra logging.
This commit is contained in:
parent
5930e4bcc4
commit
07bdb324c1
|
@ -306,8 +306,6 @@ static void html_css_process_modified_styles(void *pw)
|
|||
|
||||
for (i = 0, s = c->stylesheets; i != c->stylesheet_count; i++, s++) {
|
||||
if (c->stylesheets[i].modified) {
|
||||
LOG(("Processing modified inline stylesheet for %p",
|
||||
c->stylesheets[i].node));
|
||||
all_done &= html_css_process_modified_style(c, s);
|
||||
}
|
||||
}
|
||||
|
@ -329,7 +327,6 @@ bool html_css_update_style(html_content *c, dom_node *style)
|
|||
break;
|
||||
}
|
||||
if (i == c->stylesheet_count) {
|
||||
LOG(("Creating inline stylesheet for %p", style));
|
||||
s = html_create_style_element(c, style);
|
||||
}
|
||||
if (s == NULL) {
|
||||
|
|
Loading…
Reference in New Issue