mirror of
https://github.com/HoneyryderChuck/httpx.git
synced 2025-10-05 00:02:38 -04:00
11 lines
230 B
Plaintext
11 lines
230 B
Plaintext
module HTTPX
|
|
interface _IOLogger
|
|
def <<: (string?) -> void
|
|
end
|
|
|
|
module Loggable
|
|
def log: (?level: Integer, ?color: Symbol) { () -> String } -> void
|
|
|
|
def log_exception: (StandardError, **untyped) -> void
|
|
end
|
|
end |