Added initial debug message of SQLite DB location

This commit is contained in:
Paulo Truta
2021-05-03 21:02:09 +00:00
parent 6cb3e198f0
commit d975710445
+2 -3
View File
@@ -74,7 +74,6 @@ func main() {
time.Sleep(defaultNotReadySleepTime)
}
}
}
@@ -93,8 +92,8 @@ func printVersion() {
func printDbDetails() {
fmt.Printf(
"\n\nDatabase Connection Information:\n %s\n\n",
utils.GetMySQLDbConnectionDetails(),
"\n\nSQLite Database Location:\n %s\n\n",
utils.GetSQLiteDbConnectionDetails(),
)
}