-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to write v2.LogEntry Protobufs #1298
Comments
Ah I see there's already a function for this: java-logging/google-cloud-logging/src/main/java/com/google/cloud/logging/LogEntry.java Lines 56 to 59 in 4cb2e2c
If I open a PR to add an overloaded |
Sure @KaoruDev , feel free to open a PR to expose this function. Just one note - I guess for more universal use, instead of adding extra |
Hi @KaoruDev, just want to follow up, are you still interested in adding extra |
hey @cindy-peng -- we've since moved away from using this library. I likely won't be able to contribute for the foreseeable future 😞 |
Thanks for stopping by to let us know something could be better!
PLEASE READ: If you have a support contract with Google, please create an issue in the support console instead of filing on GitHub. This will ensure a timely response.
Is your feature request related to a problem? Please describe.
I'm trying to write logs in the shape of
com.google.logging.v2.LogEntry
. However, the#write
expectscom.google.logging.LogEntry
.Describe the solution you'd like
Reasonable options might be:
com.google.logging.v2.LogEntry
intocom.google.logging.LogEntry
.#write
method that acceptscom.google.logging.v2.LogEntry
.Describe alternatives you've considered
I'm writing my own converter 😭
Additional context
Sorry, if this method already exists, could you please point me to the docs?
The text was updated successfully, but these errors were encountered: