Printf specifiers
Application trace supports the ANSI C printf specifiers. You must be careful when you select the specifier; otherwise you might get unpredictable results, including abnormal termination of the JVM.
For 64-bit integers, you must use the ll (lowercase LL, meaning
long long) modifier. For example: %lld
or %lli
.
For pointer-sized integers use the z modifier. For example: %zx
or %zd
.