aboutsummaryrefslogtreecommitdiff
path: root/buildbot-client.el
diff options
context:
space:
mode:
Diffstat (limited to 'buildbot-client.el')
-rw-r--r--buildbot-client.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/buildbot-client.el b/buildbot-client.el
index e979368..a633ff0 100644
--- a/buildbot-client.el
+++ b/buildbot-client.el
@@ -31,8 +31,9 @@
"%s/api/v2/builds/%s/steps"
buildbot-host buildid)))
-(defun buildbot-format-log-url (logid)
- (format "%s/api/v2/logs/%s/raw" buildbot-host logid))
+(defun buildbot-api-log-raw (logid)
+ (buildbot-url-fetch-raw
+ (format "%s/api/v2/logs/%d/raw" buildbot-host logid)))
(defun buildbot-api-recent-changes (limit)
(buildbot-api-change (list (cons 'order "-changeid") (cons 'limit limit))))