Skip to content

Commit c53d7f3

Browse files
author
Nathan Franke
authored
Remove extra debug log (#37)
1 parent 19a27f3 commit c53d7f3

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

embedded_postgres.go

-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import (
44
"errors"
55
"fmt"
66
"io/ioutil"
7-
"log"
87
"net"
98
"os"
109
"os/exec"
@@ -148,7 +147,6 @@ func startPostgres(binaryExtractLocation string, config Config) error {
148147
postgresProcess := exec.Command(postgresBinary, "start", "-w",
149148
"-D", userDataPathOrDefault(config.dataPath, binaryExtractLocation),
150149
"-o", fmt.Sprintf(`"-p %d"`, config.port))
151-
log.Println(postgresProcess.String())
152150
postgresProcess.Stderr = config.logger
153151
postgresProcess.Stdout = config.logger
154152

0 commit comments

Comments
 (0)