+
+
+ Application Logs
+
+
+
+
+
+ {copyStatus && {copyStatus}}
+
+
+
+
+ {regexError && (
+
+
+
+ setRegexInput(e.target.value)}
+ title={regexError ?? ''}
+ spellCheck={false}
+ />
+ regex error: {regexError}
+ )}
+ {loadError && (
+ load error: {loadError}
+ )}
+
+
+ {loading ? 'loading' : `showing ${formatCount(filteredRows.length, 'line')} of ${formatCount(logs.length, 'line')}`}
+ {paused && pausedBufferCount > 0 && ` - ${formatCount(pausedBufferCount, 'paused line')}`}
+
+
+
+ {logs.length === 0 ? 'No application logs recorded yet.' : 'No log lines match the current filters.'}
+
+ ) : filteredRows.map((row, index) => (
+
+ {row.line}
+
+ ))}
+