Log process command line arguments

This commit is contained in:
Erik C. Thauvin 2025-03-25 13:30:05 -07:00
parent c4ba97ff6d
commit ebef9ea3d5
Signed by: erik
GPG key ID: 776702A6A2DA330E

View file

@ -449,6 +449,10 @@ public class PitestOperation extends AbstractProcessOperation<PitestOperation> {
});
}
if (LOGGER.isLoggable(Level.FINE)) {
LOGGER.fine(String.join(" ", args));
}
return args;
}