Skip to content

Commit

Permalink
#3460 log improved
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Nov 10, 2024
1 parent a103d61 commit 8501e08
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public void exec() throws IOException {
}
}
Logger.info(
this, "New %d objects found in %d unpacked dependencies",
this, "New %d EO objects found in %d unpacked dependencies",
found, deps.size()
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,11 @@ public void exec() throws IOException {
if (this.scopedTojos().size() == 0) {
Logger.warn(this, "Nothing to probe, since there are no programs");
} else {
Logger.info(this, "Nothing to probe, all programs checked already");
Logger.info(
this,
"Nothing to probe, all %d programs checked already",
this.scopedTojos().size()
);
}
} else if (probed.isEmpty()) {
Logger.debug(
Expand Down

0 comments on commit 8501e08

Please sign in to comment.