diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-07-02 14:01:17 +0100 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-07-02 14:01:17 +0100 |
commit | 4ebe7d34773f6bc4fda24ac40996757fb6ecd881 (patch) | |
tree | abb90e98e963a316a8fb1c71708cd5cb15330b00 | |
parent | ca4f99833f749e4860e4b8fae02ffb714f735f67 (diff) |
More messages during backoff.
-rw-r--r-- | sx-request.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sx-request.el b/sx-request.el index cd611f4..7a7bbf4 100644 --- a/sx-request.el +++ b/sx-request.el @@ -103,6 +103,7 @@ It is good to use a reasonable delay to avoid rate-limiting.") (defun sx-request--wait-while-backoff () (when sx--backoff-time + (message "Waiting for backoff time: %s" sx--backoff-time) (let ((time (cadr (current-time)))) (if (> (- sx--backoff-time time) 1000) ;; If backoff-time is more than 1000 seconds in the future, |