po
solution
For those of you want to see Dictionary as JSON without escape sequence in console, here is a simple way to do that:
(lldb) p print(String(data: try! JSONSerialization.data(withJSONObject: object, options: .prettyPrinted), encoding: .utf8)!)
Update
Check out this answer too.