A class to represent the Splunk log levels
| 30 | |
| 31 | |
| 32 | class HECLogLevel(object): |
| 33 | """ |
| 34 | A class to represent the Splunk log levels |
| 35 | """ |
| 36 | |
| 37 | INFO = "INFO" |
| 38 | WARN = "WARN" |
| 39 | ERROR = "ERROR" |
| 40 | |
| 41 | |
| 42 | class HECEndpoint(object): |
nothing calls this directly
no outgoing calls
no test coverage detected