Skip to content

Commit

Permalink
argument change
Browse files Browse the repository at this point in the history
  • Loading branch information
Satvik Patil authored and Satvik Patil committed Jan 2, 2025
1 parent c22c77c commit 3b57716
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion v1_examples/connector/golang/golang_connector/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ func (s *server) Update(in *pb.UpdateRequest, stream pb.Connector_UpdateServer)
state := MyState{}
json.Unmarshal([]byte(state_json), &state)

message := fmt.Sprintf("config: %s, selection: %s, state_json: %s, mystate: %s", config, selection, state_json, state)
message := fmt.Sprintf("config: %s, selection: %s, state_json: %s, mystate: %+v", config, selection, state_json, state)
LogMessage(INFO, message)

// -- Send a log message
Expand Down

0 comments on commit 3b57716

Please sign in to comment.