We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52d2de1 commit 7cfe472Copy full SHA for 7cfe472
1 file changed
functions/helloworld/hello-error/src/main/java/functions/HelloError.java
@@ -31,11 +31,11 @@ public class HelloError implements HttpFunction {
31
@Override
32
public void service(HttpRequest request, HttpResponse response)
33
throws IOException {
34
- // These will NOT be reported to Stackdriver error reporting
+ // These will NOT be reported to Error Reporting
35
System.err.println("I failed you");
36
logger.severe("I failed you");
37
38
- // This WILL be reported to Stackdriver error reporting
+ // This WILL be reported to Error Reporting
39
throw new RuntimeException("I failed you");
40
}
41
0 commit comments