From b60a2ad4b9dd04aaa5830c53235b094b0d5281ca Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Tue, 7 Apr 2020 00:42:13 +0200 Subject: Add moderation support (filter non-errors) --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'index.html') diff --git a/index.html b/index.html index 3a660d3..c8f19c2 100644 --- a/index.html +++ b/index.html @@ -22,7 +22,7 @@ var request = new XMLHttpRequest(); request.addEventListener('load', renderEvents); - request.open('GET', 'https://api.rollbar.com/api/1/items/?access_token=' + kReadToken + '&environment=production&status=active'); + request.open('GET', 'https://api.rollbar.com/api/1/items/?access_token=' + kReadToken + '&environment=production&status=active&level=error'); request.send(); }; -- cgit