From 44dd2f33679e1b8a35d7c3f37a719279988419a7 Mon Sep 17 00:00:00 2001 From: murgatroid99 Date: Thu, 12 Feb 2015 15:48:51 -0800 Subject: Removed extraneous log messages --- src/node/ext/call.cc | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src/node/ext/call.cc') diff --git a/src/node/ext/call.cc b/src/node/ext/call.cc index cdc34b52a7..4401698b1e 100644 --- a/src/node/ext/call.cc +++ b/src/node/ext/call.cc @@ -98,9 +98,6 @@ bool CreateMetadataArray( string_handles->push_back(unique_ptr(utf8_key)); Handle values = Local::Cast(metadata->Get(current_key)); for (unsigned int j = 0; j < values->Length(); j++) { - if (array->count >= array->capacity) { - gpr_log(GPR_ERROR, "Metadata array grew past capacity"); - } Handle value = values->Get(j); grpc_metadata *current = &array->metadata[array->count]; current->key = **utf8_key; @@ -447,11 +444,9 @@ void DestroyTag(void *tag) { } Call::Call(grpc_call *call) : wrapped_call(call) { - gpr_log(GPR_DEBUG, "Constructing call, this: %p, pointer: %p", this, call); } Call::~Call() { - gpr_log(GPR_DEBUG, "Destructing call, this: %p, pointer: %p", this, wrapped_call); grpc_call_destroy(wrapped_call); } @@ -483,7 +478,6 @@ Handle Call::WrapStruct(grpc_call *call) { if (call == NULL) { return NanEscapeScope(NanNull()); } - gpr_log(GPR_DEBUG, "Wrapping call: %p", call); const int argc = 1; Handle argv[argc] = {External::New(reinterpret_cast(call))}; return NanEscapeScope(constructor->NewInstance(argc, argv)); -- cgit v1.2.3