turn on some traces to try and debug ruby

pull/31204/head
Craig Tiller 3 years ago
parent 450987a2c8
commit 1bf3cfd552
  1. 2
      src/core/ext/transport/chttp2/transport/chttp2_transport.cc
  2. 2
      src/core/lib/channel/channel_stack.cc
  3. 2
      src/core/lib/gpr/log.cc
  4. 4
      src/core/lib/surface/call.cc

@ -127,7 +127,7 @@ static int g_default_max_pings_without_data = DEFAULT_MAX_PINGS_BETWEEN_DATA;
static int g_default_max_ping_strikes = DEFAULT_MAX_PING_STRIKES; static int g_default_max_ping_strikes = DEFAULT_MAX_PING_STRIKES;
#define MAX_CLIENT_STREAM_ID 0x7fffffffu #define MAX_CLIENT_STREAM_ID 0x7fffffffu
grpc_core::TraceFlag grpc_http_trace(false, "http"); grpc_core::TraceFlag grpc_http_trace(true, "http");
grpc_core::TraceFlag grpc_keepalive_trace(false, "http_keepalive"); grpc_core::TraceFlag grpc_keepalive_trace(false, "http_keepalive");
grpc_core::DebugOnlyTraceFlag grpc_trace_chttp2_refcount(false, grpc_core::DebugOnlyTraceFlag grpc_trace_chttp2_refcount(false,
"chttp2_refcount"); "chttp2_refcount");

@ -32,7 +32,7 @@
using grpc_event_engine::experimental::EventEngine; using grpc_event_engine::experimental::EventEngine;
grpc_core::TraceFlag grpc_trace_channel(false, "channel"); grpc_core::TraceFlag grpc_trace_channel(true, "channel");
grpc_core::TraceFlag grpc_trace_channel_stack(false, "channel_stack"); grpc_core::TraceFlag grpc_trace_channel_stack(false, "channel_stack");
/* Memory layouts. /* Memory layouts.

@ -29,7 +29,7 @@
#include "src/core/lib/gprpp/global_config.h" #include "src/core/lib/gprpp/global_config.h"
#ifndef GPR_DEFAULT_LOG_VERBOSITY_STRING #ifndef GPR_DEFAULT_LOG_VERBOSITY_STRING
#define GPR_DEFAULT_LOG_VERBOSITY_STRING "ERROR" #define GPR_DEFAULT_LOG_VERBOSITY_STRING "DEBUG"
#endif // !GPR_DEFAULT_LOG_VERBOSITY_STRING #endif // !GPR_DEFAULT_LOG_VERBOSITY_STRING
GPR_GLOBAL_CONFIG_DEFINE_STRING(grpc_verbosity, GPR_GLOBAL_CONFIG_DEFINE_STRING(grpc_verbosity,

@ -97,8 +97,8 @@
#include "src/core/lib/transport/metadata_batch.h" #include "src/core/lib/transport/metadata_batch.h"
#include "src/core/lib/transport/transport.h" #include "src/core/lib/transport/transport.h"
grpc_core::TraceFlag grpc_call_error_trace(false, "call_error"); grpc_core::TraceFlag grpc_call_error_trace(true, "call_error");
grpc_core::TraceFlag grpc_compression_trace(false, "compression"); grpc_core::TraceFlag grpc_compression_trace(true, "compression");
grpc_core::TraceFlag grpc_call_trace(false, "call"); grpc_core::TraceFlag grpc_call_trace(false, "call");
grpc_core::TraceFlag grpc_call_refcount_trace(false, "call_refcount"); grpc_core::TraceFlag grpc_call_refcount_trace(false, "call_refcount");

Loading…
Cancel
Save