aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/channel/channel_args_test.cc
diff options
context:
space:
mode:
authorGravatar ncteisen <ncteisen@gmail.com>2018-05-29 13:52:02 -0700
committerGravatar ncteisen <ncteisen@gmail.com>2018-05-29 13:52:02 -0700
commit41110e8d3cfb065c68f39639055a110e6c75c9dc (patch)
tree41b101b5e358b3bb22e91a2ba61dfff93df243df /test/core/channel/channel_args_test.cc
parent8c13db8e432f4d68fd775826238ab9ebb48f3f19 (diff)
Add logging
Diffstat (limited to 'test/core/channel/channel_args_test.cc')
-rw-r--r--test/core/channel/channel_args_test.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/core/channel/channel_args_test.cc b/test/core/channel/channel_args_test.cc
index a098d26974..41c62a8f16 100644
--- a/test/core/channel/channel_args_test.cc
+++ b/test/core/channel/channel_args_test.cc
@@ -153,6 +153,7 @@ struct fake_class {
};
static void* fake_pointer_arg_copy(void* arg) {
+ gpr_log(GPR_DEBUG, "fake_pointer_arg_copy");
fake_class* fc = static_cast<fake_class*>(arg);
fake_class* new_fc = static_cast<fake_class*>(gpr_malloc(sizeof(fake_class)));
new_fc->foo = fc->foo;
@@ -160,6 +161,7 @@ static void* fake_pointer_arg_copy(void* arg) {
}
static void fake_pointer_arg_destroy(void* arg) {
+ gpr_log(GPR_DEBUG, "fake_pointer_arg_destroy");
fake_class* fc = static_cast<fake_class*>(arg);
gpr_free(fc);
}