SCP32: Wrong setting method

What it does

Reports setting that are being read or updated with the wrong Settings method based on the setting type.

Why is this bad?

Example

settings.get("LOG_ENABLED")

Instead use:

settings.getbool("LOG_ENABLED")