Remove Debugs

This commit is contained in:
İsmail
2024-11-06 21:15:51 +03:00
parent dc5ed4f2ed
commit 0c00dca7ec
2 changed files with 0 additions and 13 deletions

View File

@@ -35,8 +35,6 @@ func CreatePGDB() (func(), error) {
func CreateMyDB() (func(), error) {
log.Printf("[DEBUG] CreateMyDB")
ctx := context.Background()
c, err := mysql.Run(ctx,
"mysql:8.0.40",
@@ -46,14 +44,11 @@ func CreateMyDB() (func(), error) {
)
if err != nil {
log.Printf("[DEBUG] CreateMyDB Error: %s", err)
return nil, err
}
talksConn, err := c.ConnectionString(ctx)
log.Printf("[DEBUG] CreateMyDB - ConnectionString: %s, Error: %s", talksConn, err)
return GetContextDB(ctx, c, talksConn, err, "NETBIRD_STORE_ENGINE_MYSQL_DSN")
}