File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
tessellate-main/src/main/java/io/clusterless/tessellate Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change 1616import io .clusterless .tessellate .util .MetricsPrinter ;
1717import io .clusterless .tessellate .util .Verbosity ;
1818import io .clusterless .tessellate .util .VersionProvider ;
19+ import io .clusterless .tessellate .util .Versions ;
1920import io .clusterless .tessellate .util .json .JSONUtil ;
21+ import org .slf4j .Logger ;
22+ import org .slf4j .LoggerFactory ;
2023import picocli .CommandLine ;
2124
2225import java .io .IOException ;
3437 sortOptions = false
3538)
3639public class Main implements Callable <Integer > {
40+ private static final Logger LOG = LoggerFactory .getLogger (Main .class );
41+
3742 public enum Show {
3843 formats ,
3944 protocols ,
@@ -180,6 +185,8 @@ public Integer call() throws IOException {
180185
181186 private Integer executePipeline (PipelineDef pipelineDef ) throws IOException {
182187 try {
188+ LOG .info ("tessellate version: {}" , Versions .clsVersion ());
189+
183190 Pipeline pipeline = new Pipeline (pipelineOptions , pipelineDef );
184191
185192 metrics .start (pipeline );
You can’t perform that action at this time.
0 commit comments