since markers

git-svn-id: https://svn.apache.org/repos/asf/ant/antlibs/antunit/trunk@1592851 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/main/org/apache/ant/antunit/LogCapturer.java b/src/main/org/apache/ant/antunit/LogCapturer.java
index 0e8b86f..5372b5b 100644
--- a/src/main/org/apache/ant/antunit/LogCapturer.java
+++ b/src/main/org/apache/ant/antunit/LogCapturer.java
@@ -98,6 +98,7 @@
      * 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 @@
      * 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 @@
      * 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 @@
      * 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);