Commit 0d1603db authored by alokp's avatar alokp Committed by Commit bot

Add logging for missing resource.

Html viewer is hitting a NOTREACHED due to a missing resource.
Added logging for the resource name so that it can be tracked.

Review URL: https://codereview.chromium.org/1007913002

Cr-Commit-Position: refs/heads/master@{#320759}
parent 638dcf8e
......@@ -159,7 +159,7 @@ blink::WebData BlinkPlatformImpl::loadResource(const char* resource) {
return blink::WebData(data, length);
}
}
NOTREACHED() << "Requested resource is unavailable!";
NOTREACHED() << "Requested resource is unavailable: " << resource;
return blink::WebData();
}
......
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