diff options
author | ncteisen <ncteisen@gmail.com> | 2018-05-29 13:52:02 -0700 |
---|---|---|
committer | ncteisen <ncteisen@gmail.com> | 2018-05-29 13:52:02 -0700 |
commit | 41110e8d3cfb065c68f39639055a110e6c75c9dc (patch) | |
tree | 41b101b5e358b3bb22e91a2ba61dfff93df243df /test | |
parent | 8c13db8e432f4d68fd775826238ab9ebb48f3f19 (diff) |
Add logging
Diffstat (limited to 'test')
-rw-r--r-- | test/core/channel/channel_args_test.cc | 2 |
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); } |