Docs feedback: Runner Log Settings examples are wrong

https://docs.gitlab.com/runner/configuration/advanced-configuration.html#the-global-section

The examples for log_level and log_format are wrong:

log_level = "warning"
log_format = "info"

Both values are not valid for the respective config setting.

Correct values would be:

log_level = "warn"
log_format = "runner"

This occurs multiple times in this document.