Author: bodewig
Date: Tue May 6 19:45:47 2014
New Revision: 1592851
URL: http://svn.apache.org/r1592851
Log:
since markers
Modified:
ant/antlibs/antunit/trunk/src/main/org/apache/ant/antunit/LogCapturer.java
Modified:
ant/antlibs/antunit/trunk/src/main/org/apache/ant/antunit/LogCapturer.java
URL:
http://svn.apache.org/viewvc/ant/antlibs/antunit/trunk/src/main/org/apache/ant/antunit/LogCapturer.java?rev=1592851&r1=1592850&r2=1592851&view=diff
==============================================================================
--- ant/antlibs/antunit/trunk/src/main/org/apache/ant/antunit/LogCapturer.java
(original)
+++ ant/antlibs/antunit/trunk/src/main/org/apache/ant/antunit/LogCapturer.java
Tue May 6 19:45:47 2014
@@ -98,6 +98,7 @@ public class LogCapturer implements Buil
* more severe.
* @param mergeLines whether to merge messages into a single line
* or split them into multiple lines
+ * @since AntUnit 1.3
*/
public String getWarnLog(boolean mergeLines) {
return getLog(Project.MSG_WARN, mergeLines);
@@ -107,6 +108,7 @@ public class LogCapturer implements Buil
* more severe.
* @param mergeLines whether to merge messages into a single line
* or split them into multiple lines
+ * @since AntUnit 1.3
*/
public String getInfoLog(boolean mergeLines) {
return getLog(Project.MSG_INFO, mergeLines);
@@ -116,6 +118,7 @@ public class LogCapturer implements Buil
* more severe.
* @param mergeLines whether to merge messages into a single line
* or split them into multiple lines
+ * @since AntUnit 1.3
*/
public String getVerboseLog(boolean mergeLines) {
return getLog(Project.MSG_VERBOSE, mergeLines);
@@ -125,6 +128,7 @@ public class LogCapturer implements Buil
* more severe.
* @param mergeLines whether to merge messages into a single line
* or split them into multiple lines
+ * @since AntUnit 1.3
*/
public String getDebugLog(boolean mergeLines) {
return getLog(Project.MSG_DEBUG, mergeLines);