From a5ad98706a1d744791843b910f6fdee083c2e600 Mon Sep 17 00:00:00 2001
From: Erick Hitter <git-contrib@ethitter.com>
Date: Tue, 12 Sep 2017 16:02:43 -0700
Subject: [PATCH] Update readme for latest changes

---
 README.md  | 8 ++++++++
 readme.txt | 8 ++++++++
 2 files changed, 16 insertions(+)

diff --git a/README.md b/README.md
index 1f8a4c0..344779d 100644
--- a/README.md
+++ b/README.md
@@ -23,6 +23,14 @@ Provides a WP-CLI command to schedule these events. A UI is under consideration.
 
 ## Frequently Asked Questions ##
 
+### Where is command output captured? ###
+
+`error_log()` is used to store WP-CLI's output (`STDOUT`, `STDERR`, and the exit code), along with basic timing information and the command that was executed.
+
+### Can this be used with commands that manipulate files? ###
+
+This depends on how the commands are written, and the environment that hosts Cron Control's runner. The plugin makes no special accommodations to handle files required by or produced by commands.
+
 ### Why is PHP 7 required? ###
 
 To support arrays in constants set using `define()`, PHP 7 is required. These are used to set whitelists and blacklists, though filters are also provided; see below.
diff --git a/readme.txt b/readme.txt
index 89ea926..7774669 100644
--- a/readme.txt
+++ b/readme.txt
@@ -23,6 +23,14 @@ Provides a WP-CLI command to schedule these events. A UI is under consideration.
 
 == Frequently Asked Questions ==
 
+= Where is command output captured? =
+
+`error_log()` is used to store WP-CLI's output (`STDOUT`, `STDERR`, and the exit code), along with basic timing information and the command that was executed.
+
+= Can this be used with commands that manipulate files? =
+
+This depends on how the commands are written, and the environment that hosts Cron Control's runner. The plugin makes no special accommodations to handle files required by or produced by commands.
+
 = Why is PHP 7 required? =
 
 To support arrays in constants set using `define()`, PHP 7 is required. These are used to set whitelists and blacklists, though filters are also provided; see below.
-- 
GitLab