module Async::Console

def self.warn(*arguments, exception: nil, **options)

Log a message at the warn level. The shim redirects to `Kernel#warn`.
def self.warn(*arguments, exception: nil, **options)
	if exception
		super(*arguments, exception.full_message, **options)
	else
		super(*arguments, **options)
	end
end