diff --git a/functions/helloworld/hello-error/src/main/java/functions/HelloError.java b/functions/helloworld/hello-error/src/main/java/functions/HelloError.java index 9325791f24d..f12c3ce9631 100644 --- a/functions/helloworld/hello-error/src/main/java/functions/HelloError.java +++ b/functions/helloworld/hello-error/src/main/java/functions/HelloError.java @@ -31,11 +31,11 @@ public class HelloError implements HttpFunction { @Override public void service(HttpRequest request, HttpResponse response) throws IOException { - // These will NOT be reported to Stackdriver error reporting + // These will NOT be reported to Error Reporting System.err.println("I failed you"); logger.severe("I failed you"); - // This WILL be reported to Stackdriver error reporting + // This WILL be reported to Error Reporting throw new RuntimeException("I failed you"); } }