From 2eb72988e54ea637c8ee46789289be9974b22715 Mon Sep 17 00:00:00 2001 From: Donovan Date: Thu, 23 Jan 2025 14:23:28 -0600 Subject: [PATCH] printf to log --- cmd/nkode/nkode.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/nkode/nkode.go b/cmd/nkode/nkode.go index 94b79de..c4de4bc 100644 --- a/cmd/nkode/nkode.go +++ b/cmd/nkode/nkode.go @@ -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) {