Use shared lib for LLNDK

liblog does not provide static lib as an LLNDK for product modules.
Instead, shared lib must be used.

Bug: 120954888
Bug: 145580164
Test: set PRODUCT_PRODUCT_VNDK_VERSION := current and build
Change-Id: I396a77ec6e0a8fbf475a5c71a95cc559957058ed
diff --git a/guest/monitoring/tombstone_transmit/Android.bp b/guest/monitoring/tombstone_transmit/Android.bp
index 500a5f4..2e0af82 100644
--- a/guest/monitoring/tombstone_transmit/Android.bp
+++ b/guest/monitoring/tombstone_transmit/Android.bp
@@ -21,10 +21,12 @@
     static_libs: [
         "libcuttlefish_fs_product",
         "libgflags",
-        "liblog",
         "libbase",
         "libcutils",
     ],
+    shared_libs: [
+        "liblog",
+    ],
     stl: "libc++_static",
     header_libs: [
         "cuttlefish_glog_product",