Details
-
Type:
Improvement
-
Status:
Closed
-
Priority:
Trivial
-
Resolution: Fixed
-
Affects Version/s: 2.0.9
-
Fix Version/s: 2.0.11, 2.1.0, 3.0-alpha-1
-
Component/s: Logging
-
Labels:None
-
Complexity:Intermediate
-
Patch Submitted:Yes
-
Number of attachments :
Description
Currently:
[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-jar-plugin:2.2:jar' --> [DEBUG] (f) excludes = [Ljava.lang.String;@c3c315 [DEBUG] -- end configuration --
i.e. arrays won't show up nicely.
The attached patch returns a string similar to the result of
Arrays.asList( (Object[]) value ).toString()
but uses reflection to handle arrays of primitives as well.