We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2bfa464 + 698104e commit 84e0f58Copy full SHA for 84e0f58
apps/dokploy/components/dashboard/docker/logs/utils.ts
@@ -108,7 +108,8 @@ export const getLogType = (message: string): LogStyle => {
108
/(?:might|may|could)\s+(?:not|cause|lead\s+to)/i.test(lowerMessage) ||
109
/(?:!+\s*(?:warning|caution|attention)\s*!+)/i.test(lowerMessage) ||
110
/\b(?:deprecated|obsolete)\b/i.test(lowerMessage) ||
111
- /\b(?:unstable|experimental)\b/i.test(lowerMessage)
+ /\b(?:unstable|experimental)\b/i.test(lowerMessage) ||
112
+ /⚠|⚠️/i.test(lowerMessage)
113
) {
114
return LOG_STYLES.warning;
115
}
0 commit comments