When I use print() on a dictionary in Swift, it comes out nice and pretty in the console, with a key and a value.
print()
object = Optional({ customerId = 1
expression debugPrint(object)
just put the line above in your debugger and hit enter. It will print out contents of our object in more human readable format.
also you can use another one command - po print(data), which is easier to remember.
po print(data)