Method: Async::Console.warn
- Defined in:
- lib/async/console.rb
.warn(*arguments, exception: nil, **options) ⇒ Object
Log a message at the warn level. The shim redirects to ‘Kernel#warn`.
24 25 26 27 28 29 30 |
# File 'lib/async/console.rb', line 24 def self.warn(*arguments, exception: nil, **) if exception super(*arguments, exception., **) else super(*arguments, **) end end |