EXC_BAD_ACCESS on NSLog with no string formatting

In Swift you'll get this issue if you are logging an encoded URL which contains '%' - For example:
NSLog("My long Encoded URL: (myLongUrlVar)")

Instead, it will work with params:
NSLog("My long Encoded URL: %@", myLongUrlVar)