LighthouseGames / KmLogging

Kotlin multiplatform logging. High performance, composable and simple to use.
Apache License 2.0
84 stars 13 forks source link

Fix format string #26

Open sfionov opened 1 month ago

sfionov commented 1 month ago

_os_log_internal() receives format string with variadic arguments. However, the current code just passes a single string in the argument which is supposed to be a format string.

This commit adds format string to avoid format-string attacks.