You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The regex for the digits rule matches any number of digits over 4, surrounded by non digits. This rule makes uuid strings become redacted, which is probably unwanted in most logs. Maybe the following regex is slightly better: /(?<!-)\b\d{4,}\b(?!-)/g
The text was updated successfully, but these errors were encountered:
The regex for the digits rule matches any number of digits over 4, surrounded by non digits. This rule makes uuid strings become redacted, which is probably unwanted in most logs. Maybe the following regex is slightly better:
/(?<!-)\b\d{4,}\b(?!-)/g
The text was updated successfully, but these errors were encountered: