aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--middleware/errors/README.md21
1 files changed, 8 insertions, 13 deletions
diff --git a/middleware/errors/README.md b/middleware/errors/README.md
index 53ac5bacf..21b8f4848 100644
--- a/middleware/errors/README.md
+++ b/middleware/errors/README.md
@@ -2,26 +2,21 @@
*errors* enables error logging.
-Any errors encountered during the query processing will be printed on standard output.
+Any errors encountered during the query processing will be printed to standard output.
## Syntax
~~~
-errors [FILE]
+errors
~~~
-* **FILE** is the log file to create (or append to). The *only* valid name for **FILE** is *stdout*
-
## Examples
-Log errors to *stdout*.
-
-~~~
-errors
-~~~
-
-Log errors to *stdout*.
+Use the *whoami* to respond to queries and Log errors to standard output.
-~~~
-errors stdout
+~~~ corefile
+. {
+ whoami
+ errors
+}
~~~