fix-6: raise ring display cap to 5000 (viewer + Entries clamp); viewer default limit 1000
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_017CDMFpFx84pfviCTVuGGhf
This commit is contained in:
@@ -620,7 +620,7 @@ function toggleLogAutoRefresh() {
|
||||
}
|
||||
function refreshLogs(append) {
|
||||
if (currentLogSource === 'agent') { refreshAgentLogs(); return; }
|
||||
var url = '/api/debug/logs?level=' + currentLogLevel + '&limit=500';
|
||||
var url = '/api/debug/logs?level=' + currentLogLevel + '&limit=1000';
|
||||
if (append && lastLogTimestamp) url += '&after=' + encodeURIComponent(lastLogTimestamp);
|
||||
fetch(url, {headers: csrfHeaders()}).then(function(r){return r.json()}).then(function(data) {
|
||||
if (!data.ok) return;
|
||||
|
||||
Reference in New Issue
Block a user