We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
The example: int i = 1; float pi = 3.1459; Debug.print(DBG_VERBOSE, "i = %d, pi = %f", i, pi);
int i = 1; float pi = 3.1459; Debug.print(DBG_VERBOSE, "i = %d, pi = %f", i, pi);
Results in: i = 1, pi = ?
It looks like pi=%f doesn't work.