printf to log

This commit is contained in:
2025-01-23 14:23:28 -06:00
parent 536894c7dd
commit 63d9000fb2

View File

@@ -38,7 +38,7 @@ func main() {
}(sqliteRepo)
FlaticonToSqlite(sqliteRepo, *svgPath)
fmt.Sprintf("Successfully added all SVGs in %s to the database at %s", *svgPath, *dbPath)
log.Println(fmt.Sprintf("Successfully added all SVGs in %s to the database at %s\n", *svgPath, *dbPath))
}
func FlaticonToSqlite(repo *repository.SqliteRepository, svgDir string) {