We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9191ca8 commit 6c186bdCopy full SHA for 6c186bd
webapps/console/pages/[workspaceId]/syncs/logs.tsx
@@ -11,7 +11,7 @@ import escape from "lodash/escape";
11
function colorLogs(data: string[]): ReactNode {
12
return data.map((line, i) => {
13
line = escape(line);
14
- if (line.includes(" ERROR [") || line.includes(" FATAL [")) {
+ if (line.includes(" ERROR [") || line.includes(" FATAL [") || line.includes(" ERRSTD [")) {
15
return (
16
<span
17
key={i}
0 commit comments