We have a service which logs empty line. However, in GCP logs it is coming as empty jsonPayload
insertId: jksj3z7vr05sj
jsonPayload: {
}
I want to exclude such logs. Tried following queries individully
jsonPayload.field = NULL_VALUE
NOT jsonPayload.message = ""
NOT jsonPayload.message = "\n"
None of above worked.
Official docs: