mirror of
https://github.com/apache/maven-mvnd.git
synced 2026-01-13 07:04:14 +08:00
Improve log and leverage the new infrastructure in Maven (#1164)
This commit is contained in:
@@ -296,10 +296,6 @@ public enum Environment {
|
||||
* start with <code>'glob:**/'</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.
|
||||
*/
|
||||
|
||||
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user