Skip to content

Commit

Permalink
remove debugging console logs
Browse files Browse the repository at this point in the history
Signed-off-by: jbrinkman <[email protected]>
  • Loading branch information
jbrinkman committed Feb 27, 2025
1 parent 6e1521c commit be68ac2
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions go/api/example_utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,12 @@ func initFlags() {
// This is necessary because the test framework sets the flags after the init function is called.
initOnce.Do(func() {
flag.Parse()
fmt.Println("clusterNodes:", *clusterNodes)
fmt.Println("standaloneNode:", *standaloneNode)
})
}

// getExampleGlideClient returns a GlideClient instance for testing purposes.
// This function is used in the examples of the GlideClient methods.
func getExampleGlideClient() *GlideClient {

standaloneOnce.Do(func() {
initFlags()
addresses := parseHosts(*standaloneNode)
Expand Down Expand Up @@ -90,7 +87,6 @@ func getExampleGlideClusterClient() *GlideClusterClient {
func parseHosts(addresses string) []NodeAddress {
var result []NodeAddress

fmt.Println("parseHosts: ", addresses)
if addresses == "" {
result = append(result, *new(NodeAddress))
} else {
Expand Down

0 comments on commit be68ac2

Please sign in to comment.