E8002 Bitwise Errors

Bitwise

'bit_not' can only be used with integers; got '%s'

When this occurs

`math.log(0)` or `math.log(-1)`

Example error message

error[E8002]: math.log() requires positive number

How to fix

Pass a positive number (greater than zero) to logarithm functions.

Related errors