Clean up line noise on console.log

This commit is contained in:
Corey Johnson
2012-03-14 10:48:17 -07:00
parent ac61e18f2c
commit 131d5775bf

View File

@@ -210,14 +210,8 @@ bool ClientHandler::OnConsoleMessage(CefRefPtr<CefBrowser> browser,
int line)
{
REQUIRE_UI_THREAD();
std::cout <<
std::string(message) <<
"\n\t" <<
std::string(source) <<
":" <<
line <<
"\n";
std::cout << std::string(message) << "\n";
return true;
}