Improve log and leverage the new infrastructure in Maven (#1164)

This commit is contained in:
Guillaume Nodet
2024-10-15 18:15:15 +02:00
committed by GitHub
parent 27258c0e54
commit a032544164
38 changed files with 134 additions and 2164 deletions

View File

@@ -296,10 +296,6 @@ public enum Environment {
* start with <code>'glob:**&#47;'</code> to support any location of the local repository.
*/
MVND_PLUGIN_REALM_EVICT_PATTERN("mvnd.pluginRealmEvictPattern", null, "", OptionType.STRING, Flags.OPTIONAL),
/**
* Whether or not decorate output and error streams
**/
MVND_RAW_STREAMS("mvnd.rawStreams", null, Boolean.FALSE, OptionType.VOID, Flags.OPTIONAL, "mvnd:--raw-streams"),
/**
* Overall timeout to connect to a daemon.
*/

View File

@@ -986,8 +986,8 @@ public abstract class Message {
+ repositoryUrl + '\'' + ", resourceName='"
+ resourceName + '\'' + ", contentLength="
+ contentLength + ", transferredBytes="
+ transferredBytes + ", exception='"
+ exception + '\'' + '}';
+ transferredBytes
+ (exception != null ? ", exception='" + exception + '\'' : "") + '}';
}
private String mnemonic() {