How would you write a query to find logs from either Cloud Functions or App Engine with severity NOT equal to INFO?
Aresource.type = "cloud_function" OR resource.type = "app_engine" AND severity != "INFO"
B(resource.type = "cloud_function" OR resource.type = "app_engine") AND severity != "INFO"
Cresource.type = "cloud_function" AND resource.type = "app_engine" AND severity != "INFO"
Dresource.type = "cloud_function" OR resource.type = "app_engine" AND severity = "INFO"