Using trace() function
This is a common trick in the translator.
The trace() function is used for viewing variables in the Annotation Windows during development or debugging.
You can trace a single or multiple values at once.
Why use trace() instead of print()?
The print() function creates an informational log message, while trace() does not. Using trace() will keep your logs decluttered.
Â