Skip to content

Commit

Permalink
console - fix for sync logs coloring
Browse files Browse the repository at this point in the history
  • Loading branch information
absorbb committed Jan 27, 2025
1 parent 9191ca8 commit 6c186bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapps/console/pages/[workspaceId]/syncs/logs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import escape from "lodash/escape";
function colorLogs(data: string[]): ReactNode {
return data.map((line, i) => {
line = escape(line);
if (line.includes(" ERROR [") || line.includes(" FATAL [")) {
if (line.includes(" ERROR [") || line.includes(" FATAL [") || line.includes(" ERRSTD [")) {
return (
<span
key={i}
Expand Down

0 comments on commit 6c186bd

Please sign in to comment.