delba / Log

An extensible logging framework for Swift
MIT License
830 stars 63 forks source link

Change function signatures #20

Closed kbduvall closed 7 years ago

kbduvall commented 7 years ago

Change function signatures to silence the Swift 3 warning “Expression implicitly coerced from ‘…’ to Any” that appears when passing an optional.

delba commented 7 years ago

Hi @kbduvall, thanks for the PR, those warnings are indeed very annoying! However, with this fix, everything will be printed as optional:

Log.info("Hello")
// [2017-03-05 23:18:23.312] LogTests.swift:40 INFO: Optional("Hello")

Thus I prefer to stick with the default print behavior. Thanks again though!