Display time in Xcode breakpoint

1.7k Views Asked by At

In Xcode 6 I have created a breakpoint that do not interrupt the program execution to display informations.

enter image description here

Here is the result between results of NSLog calls:

enter image description here

I now want to add a time information to this message as done by NSLog does. How can I achieve this?

Similar behavior

I know how to obtain such a result using Debugger Command but I want to know how to achieve it using Log Message:

enter image description here

2

There are 2 best solutions below

0
On

As you can see in the hints: @exp@

so you can write this:

@[NSDate date]@ - some additional message

Output will be:

2018-06-28 14:06:45 UTC - some additional message

(works only for the 'Log Message' type)

0
On

Xcode log time

Using Swift you are able to use @Date().debugDescription@ my message (UTC time)