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:
parent
9acb72a911
commit
6a398bb070
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue