This is an automated email from the ASF dual-hosted git repository.
asf-gitbox-commits pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ant.git
The following commit(s) were added to refs/heads/master by this push:
new 68c7b6cc6 70158: fix inaccuracies in the the "record" task
documentation
68c7b6cc6 is described below
commit 68c7b6cc6556a1ef8cbf9572cfa942ffe688efab
Author: Jaikiran Pai <[email protected]>
AuthorDate: Sat Jul 25 17:13:45 2026 +0530
70158: fix inaccuracies in the the "record" task documentation
---
WHATSNEW | 4 ++++
manual/Tasks/recorder.html | 17 +++++++++--------
2 files changed, 13 insertions(+), 8 deletions(-)
diff --git a/WHATSNEW b/WHATSNEW
index e7854d084..7b1e535bf 100644
--- a/WHATSNEW
+++ b/WHATSNEW
@@ -34,6 +34,10 @@ Fixed bugs:
directory to the Java runtime Paths.
Github Pull Request #230
+ * Inaccuracies in the documentation of the "record" task have been
+ fixed.
+ Bugzilla Report 70158
+
Changes from Ant 1.10.16 TO Ant 1.10.17
=======================================
diff --git a/manual/Tasks/recorder.html b/manual/Tasks/recorder.html
index 17f59aec0..f65e66a05 100644
--- a/manual/Tasks/recorder.html
+++ b/manual/Tasks/recorder.html
@@ -55,15 +55,15 @@ <h3>Parameters</h3>
<td>action</td>
<td>This tells the logger what to do: should it start recording or stop?
The first time that
the recorder task is called for this logfile, and if this attribute is
not provided, then the
- default for this attribute is <q>start</q>. If this attribute is not
provided on subsequent
- calls, then the state remains as previous.</td>
- <td>No [values = <q>start|stop</q>, default = no state change]</td>
+ default for this attribute is <q>start</q>. If this attribute is not
provided on subsequent
+ calls, then the state remains as previous. Value can be <q>start</q> or
<q>stop</q>.</td>
+ <td>No</td>
</tr>
<tr>
<td>append</td>
<td>Should the recorder append to a file, or create a new one? This is
only applicable the first
- time this task is called for this file.</td>
- <td>No [values = <q>start|stop</q>, default = no state change]</td>
+ time this task is called for this file. Value can be <q>yes</q> or
<q>no</q>.</td>
+ <td>No; default is <q>no</q></td>
</tr>
<tr>
<td>emacsmode</td>
@@ -73,11 +73,12 @@ <h3>Parameters</h3>
</tr>
<tr>
<td>loglevel</td>
- <td>At what logging level should this recorder instance record to? This
is not a once only
+ <td>At what logging level should this recorder instance record to? This is
not a once only
parameter (like <var>append</var> is)—you can increase or decrease
the logging level as
- the build process continues.
+ the build process continues. Value can be <q>error</q>, <q>warn</q>,
<q>info</q>,
+ <q>verbose</q> or <q>debug</q>.
</td>
- <td>No [values = <q>error|warn|info|verbose|debug</q>, default = no
change]</td>
+ <td>No; default is <q>info</q></td>
</tr>
</table>