From a92c654520c35e3fa65d1c2703abf1f773cf14ee Mon Sep 17 00:00:00 2001 From: Adam Cogdell Date: Fri, 11 Aug 2023 14:00:59 -0700 Subject: [PATCH] Use pybind11_protobuf when passing Fingerprints. PiperOrigin-RevId: 556081074 --- pybind11_protobuf/proto_caster_impl.h | 1 + 1 file changed, 1 insertion(+) diff --git a/pybind11_protobuf/proto_caster_impl.h b/pybind11_protobuf/proto_caster_impl.h index 636828a..e385861 100644 --- a/pybind11_protobuf/proto_caster_impl.h +++ b/pybind11_protobuf/proto_caster_impl.h @@ -40,6 +40,7 @@ struct proto_caster_load_impl { // load converts from Python -> C++ bool load(pybind11::handle src, bool convert) { + LOG(ERROR) << "load: " << src; // When given a none, treat it as a nullptr. if (src.is_none()) { value = nullptr;