<!--
{
  "availability" : [

  ],
  "documentType" : "symbol",
  "framework" : "Tor",
  "identifier" : "/documentation/Tor/TorLogLevel/_(_:_:)",
  "metadataVersion" : "0.1.0",
  "role" : "Operator",
  "symbol" : {
    "kind" : "Operator",
    "modules" : [
      "Tor"
    ],
    "preciseIdentifier" : "s:3Tor0A8LogLevelO1loiySbAC_ACtFZ"
  },
  "title" : "<(_:_:)"
}
-->

# <(_:_:)

Strict severity comparison: `.debug < .info < .notice < .warn < .err`.

```
static func < (lhs: TorLogLevel, rhs: TorLogLevel) -> Bool
```

## Parameters

`lhs`

Left operand.

`rhs`

Right operand.

## Return Value

`true` if `lhs` has strictly lower severity than `rhs`.

## Discussion

Enables predicates such as `level >= .warn` for log filtering
and test assertions. Comparison is **not** lexicographic on the
raw strings — `"DEBUG" < "ERR"` by ASCII but `.debug > .err` by
severity; always use the typed enum for ordering semantics.