fix: additional new line in some logs

This commit fixes the issue where some loggings would add an additional new line.
This commit is contained in:
ThePedroo
2024-11-08 17:35:04 -03:00
parent 2c74ee3877
commit ba7d044611
2 changed files with 19 additions and 19 deletions
+1 -1
View File
@@ -62,7 +62,7 @@ namespace SoList
for (auto *iter = solist; iter; iter = iter->get_next()) {
if (iter->get_name() && iter->get_path() && strstr(iter->get_path(), target_name)) {
iter->nullify_path();
LOGI("Cleared SOList entry for %s\n", target_name);
LOGI("Cleared SOList entry for %s", target_name);
}
}