mirror of
https://github.com/HoneyryderChuck/httpx.git
synced 2025-10-06 00:02:08 -04:00
11 lines
232 B
Plaintext
11 lines
232 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 |