Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(471)

Unified Diff: runtime/bin/socket_win.cc

Issue 163903002: Prototype of I/O statistics for Observatory (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: runtime/bin/socket_win.cc
diff --git a/runtime/bin/socket_win.cc b/runtime/bin/socket_win.cc
index 36648306a17f57b381697fd23fd1f69fdb5568f4..b516505e62c3dca1b937314b7c8f6855ef532692 100644
--- a/runtime/bin/socket_win.cc
+++ b/runtime/bin/socket_win.cc
@@ -116,7 +116,6 @@ SocketAddress* Socket::GetRemotePeer(intptr_t fd, intptr_t* port) {
if (getpeername(socket_handle->socket(),
&raw.addr,
&size)) {
- Log::PrintErr("Error getpeername: %d\n", WSAGetLastError());
return NULL;
}
*port = SocketAddress::GetAddrPort(&raw);

Powered by Google App Engine
This is Rietveld 408576698