Skip to content

Commit

Permalink
[autofix.ci] apply automated fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored Mar 6, 2025
1 parent 400b6dd commit 5194735
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/docker/src/mill/contrib/docker/DockerModule.scala
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ trait DockerModule { outer: JavaModule =>
)
.call(stdout = os.Inherit, stderr = os.Inherit, env = env)
}
if(result.exitCode == 0) log.info(s"Docker build completed successfully")
if (result.exitCode == 0) log.info(s"Docker build completed successfully")
else log.warn(s"Docker build completed unsuccessfully with code ${result.exitCode}")
tags()
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,11 @@ public interface ScoverageReportWorkerApi2 {

interface Logger {
void info(String msg);

void error(String msg);

void warn(String msg);

void debug(String msg);
}

Expand Down

0 comments on commit 5194735

Please sign in to comment.