Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion logger/frontend/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,12 @@
}

private displayServerLogs(data: Response) {
console.log('in display');
const logMessage = 'in display';
try {

Check failure on line 44 in logger/frontend/index.ts

View check run for this annotation

Aspect Workflows / Lint

ESLint found an issue

Unnecessary try/catch wrapper. (no-useless-catch)
console.log(logMessage);
} catch (e) {
throw e;
}

const el: HTMLElement = document.getElementById('log_results')!;
el.innerHTML = '';
Expand Down
Loading