Skip to content

Commit 474351c

Browse files
chore: add other as a type of LogSource (#455)
Add `other` as a type of LogSource. This value is used by Chrome when it cannot determine the origin of a log message. For more details on the available source types, refer to the [Chrome DevTools Protocol documentation](https://chromedevtools.github.io/devtools-protocol/tot/Console/#type-ConsoleMessage).
1 parent ddc9915 commit 474351c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

pytest_splunk_addon_ui_smartx/utils.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ class LogSource(Enum):
5454
SECURITY = "security"
5555
INTERVENTION = "intervention"
5656
JAVASCRIPT = "javascript"
57+
OTHER = "other"
5758

5859

5960
class LogEntry(NamedTuple):

0 commit comments

Comments
 (0)