We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2b4213 commit 1e6d438Copy full SHA for 1e6d438
function-maven-plugin/src/main/java/com/google/cloud/functions/plugin/DeployFunction.java
@@ -387,7 +387,8 @@ public void execute() throws MojoExecutionException {
387
System.out.println("Executing Cloud SDK command: gcloud " + String.join(" ", params));
388
gcloud.runCommand(params);
389
} catch (CloudSdkNotFoundException | IOException | ProcessHandlerException ex) {
390
- Logger.getLogger(DeployFunction.class.getName()).log(Level.SEVERE, "Function deployment failed", ex);
+ Logger.getLogger(DeployFunction.class.getName())
391
+ .log(Level.SEVERE, "Function deployment failed", ex);
392
throw new MojoExecutionException("Function deployment failed", ex);
393
}
394
0 commit comments