You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-tools/spring-boot-buildpack-platform/src/main/java/org/springframework/boot/buildpack/platform/build/AbstractBuildLog.java
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-tools/spring-boot-buildpack-platform/src/main/java/org/springframework/boot/buildpack/platform/build/BuildLog.java
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,7 @@
31
31
* @author Phillip Webb
32
32
* @author Scott Frederick
33
33
* @author Andrey Shlykov
34
+
* @author Rafael Ceccone
34
35
* @since 2.3.0
35
36
* @see #toSystemOut()
36
37
*/
@@ -99,6 +100,12 @@ public interface BuildLog {
99
100
*/
100
101
voidexecutedLifecycle(BuildRequestrequest);
101
102
103
+
/**
104
+
* Log that a tag has been created.
105
+
* @param tag the tag reference
106
+
*/
107
+
voidtaggedImage(ImageReferencetag);
108
+
102
109
/**
103
110
* Factory method that returns a {@link BuildLog} the outputs to {@link System#out}.
104
111
* @return a build log instance that logs to system out
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-tools/spring-boot-buildpack-platform/src/main/java/org/springframework/boot/buildpack/platform/build/BuildRequest.java
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-tools/spring-boot-buildpack-platform/src/main/java/org/springframework/boot/buildpack/platform/build/Builder.java
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-tools/spring-boot-buildpack-platform/src/main/java/org/springframework/boot/buildpack/platform/docker/DockerApi.java
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-tools/spring-boot-buildpack-platform/src/test/java/org/springframework/boot/buildpack/platform/build/BuildRequestTests.java
0 commit comments