Author: antoine
Date: Sat Apr 23 19:25:54 2011
New Revision: 1096209
URL: http://svn.apache.org/viewvc?rev=1096209&view=rev
Log:
Missing space between finished and timestamp in task/target finish message from
ProfileLogger, bugrep 51109
Modified:
ant/core/trunk/CONTRIBUTORS
ant/core/trunk/WHATSNEW
ant/core/trunk/contributors.xml
ant/core/trunk/manual/listeners.html
ant/core/trunk/src/main/org/apache/tools/ant/listener/ProfileLogger.java
Modified: ant/core/trunk/CONTRIBUTORS
URL:
http://svn.apache.org/viewvc/ant/core/trunk/CONTRIBUTORS?rev=1096209&r1=1096208&r2=1096209&view=diff
==============================================================================
--- ant/core/trunk/CONTRIBUTORS (original)
+++ ant/core/trunk/CONTRIBUTORS Sat Apr 23 19:25:54 2011
@@ -21,6 +21,7 @@ Anil K. Vijendran
Anli Shundi
Anthony Goubard
Anthony Green
+Anthony Wat
Antoine Baudoux
Antoine Levy-Lambert
Anton Mazkovoi
Modified: ant/core/trunk/WHATSNEW
URL:
http://svn.apache.org/viewvc/ant/core/trunk/WHATSNEW?rev=1096209&r1=1096208&r2=1096209&view=diff
==============================================================================
--- ant/core/trunk/WHATSNEW (original)
+++ ant/core/trunk/WHATSNEW Sat Apr 23 19:25:54 2011
@@ -45,7 +45,11 @@ Fixed bugs:
Bugzilla Report 51035.
* Exec task may mix the stderr and stdout output while logging it
- Bugzilla Report 50507.
+ Bugzilla Report 50507.
+
+ * Missing space between "finished" and timestamp in task/target
+ finish message from ProfileLogger.
+ Bugzilla Report 51109.
Other changes:
--------------
Modified: ant/core/trunk/contributors.xml
URL:
http://svn.apache.org/viewvc/ant/core/trunk/contributors.xml?rev=1096209&r1=1096208&r2=1096209&view=diff
==============================================================================
--- ant/core/trunk/contributors.xml (original)
+++ ant/core/trunk/contributors.xml Sat Apr 23 19:25:54 2011
@@ -108,6 +108,10 @@
<last>Green</last>
</name>
<name>
+ <first>Anthony</first>
+ <last>Wat</last>
+ </name>
+ <name>
<first>Antoine</first>
<last>Baudoux</last>
</name>
Modified: ant/core/trunk/manual/listeners.html
URL:
http://svn.apache.org/viewvc/ant/core/trunk/manual/listeners.html?rev=1096209&r1=1096208&r2=1096209&view=diff
==============================================================================
--- ant/core/trunk/manual/listeners.html (original)
+++ ant/core/trunk/manual/listeners.html Sat Apr 23 19:25:54 2011
@@ -514,23 +514,23 @@ Target aTarget: started Thu Jan 22 09:01
echo: started Thu Jan 22 09:01:00 CET 2009
[echo] echo-task
-echo: finishedThu Jan 22 09:01:00 CET 2009 (250ms)
+echo: finished Thu Jan 22 09:01:00 CET 2009 (250ms)
zip: started Thu Jan 22 09:01:00 CET 2009
[zip] Building zip: ...\my.zip
-zip: finishedThu Jan 22 09:01:01 CET 2009 (1313ms)
+zip: finished Thu Jan 22 09:01:01 CET 2009 (1313ms)
-Target aTarget: finishedThu Jan 22 09:01:01 CET 2009 (1719ms)
+Target aTarget: finished Thu Jan 22 09:01:01 CET 2009 (1719ms)
Target anotherTarget: started Thu Jan 22 09:01:01 CET 2009
echo: started Thu Jan 22 09:01:01 CET 2009
[echo] another-echo-task
-echo: finishedThu Jan 22 09:01:01 CET 2009 (0ms)
+echo: finished Thu Jan 22 09:01:01 CET 2009 (0ms)
-Target anotherTarget: finishedThu Jan 22 09:01:01 CET 2009 (0ms)
+Target anotherTarget: finished Thu Jan 22 09:01:01 CET 2009 (0ms)
BUILD SUCCESSFUL
Total time: 2 seconds
Modified:
ant/core/trunk/src/main/org/apache/tools/ant/listener/ProfileLogger.java
URL:
http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/ant/listener/ProfileLogger.java?rev=1096209&r1=1096208&r2=1096209&view=diff
==============================================================================
--- ant/core/trunk/src/main/org/apache/tools/ant/listener/ProfileLogger.java
(original)
+++ ant/core/trunk/src/main/org/apache/tools/ant/listener/ProfileLogger.java
Sat Apr 23 19:25:54 2011
@@ -93,10 +93,10 @@ public class ProfileLogger extends Defau
String msg = null;
if (start != null) {
long diff = now.getTime() - start.getTime();
- msg = StringUtils.LINE_SEP + name + ": finished" + now + " ("
+ msg = StringUtils.LINE_SEP + name + ": finished " + now + " ("
+ diff + "ms)";
} else {
- msg = StringUtils.LINE_SEP + name + ": finished" + now
+ msg = StringUtils.LINE_SEP + name + ": finished " + now
+ " (unknown duration, start not detected)";
}
printMessage(msg, out, event.getPriority());