I am experiencing unexpected behavior - the native log block calculates the natural logarithm (ln) instead of the base 10 logarithm (log₁₀), which affects my calculations.
Steps to reproduce the error:
Create a new project.
Add this block.
when Screen1.Initialize
set Label1.Text to log(100)
Actual Result: 4.60517 (which is ln(100)).
Expected result: 2 (since log₁₀(100) = 2).
I don't have any extensions installed
Is this a known bug in recent versions? Could there be any configuration causing this?