Printing optional strings in Swift

It seems that (in Swift 2, at least), printing optionals no longer prints a tidy result ("nil" or the value of the string), but rather prints


String: Optional("Hello, playground")


Is there no succinct way of printing the contents of an optional as either "nil" or whatever the string value is?

Printing optional strings in Swift
 
 
Q