Skip to content

Commit 6c186bd

Browse files
committedJan 27, 2025
console - fix for sync logs coloring
1 parent 9191ca8 commit 6c186bd

File tree

1 file changed

+1
-1
lines changed
  • webapps/console/pages/[workspaceId]/syncs

1 file changed

+1
-1
lines changed
 

‎webapps/console/pages/[workspaceId]/syncs/logs.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import escape from "lodash/escape";
1111
function colorLogs(data: string[]): ReactNode {
1212
return data.map((line, i) => {
1313
line = escape(line);
14-
if (line.includes(" ERROR [") || line.includes(" FATAL [")) {
14+
if (line.includes(" ERROR [") || line.includes(" FATAL [") || line.includes(" ERRSTD [")) {
1515
return (
1616
<span
1717
key={i}

0 commit comments

Comments
 (0)