since markers

git-svn-id: https://svn.apache.org/repos/asf/ant/antlibs/antunit/trunk@1592851 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stefan Bodewig 2014-05-06 19:45:47 +00:00
parent 9acb72a911
commit 6a398bb070
1 changed files with 4 additions and 0 deletions

View File

@ -98,6 +98,7 @@ public class LogCapturer implements BuildListener {
* 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 BuildListener {
* 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 BuildListener {
* 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 BuildListener {
* 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);