Commit b833579e authored by thomasanderson's avatar thomasanderson Committed by Commit bot

Add exception in GLibLogHandler for Gtk theme warning

BUG=700117
TBR=boliu@chromium.org

Review-Url: https://codereview.chromium.org/2748443003
Cr-Commit-Position: refs/heads/master@{#456194}
parent 9e387647
......@@ -277,6 +277,8 @@ static void GLibLogHandler(const gchar* log_domain,
LOG(ERROR) << message;
} else if (strstr(message, "Could not obtain desktop path or name")) {
LOG(ERROR) << message;
} else if (strstr(message, "Theme parsing error")) {
LOG(ERROR) << message;
} else {
LOG(DFATAL) << log_domain << ": " << message;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment