I am building an app-engine using java and i have the following line of code:
@ApiMethod(name = "fetchfile", path = "fetchfile", apiKeyRequired = AnnotationBoolean.TRUE)
Now what is happening is that in the app-engine logs, i see the API key exposed:
/_ah/api/<app-engine name>/v1?key=***********
How can i hide the API key from exposing in the logs? Is there like a line i need to add so that it doesnt get in the logs?
Thank you!