Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

implement jsonrpc2 agent behind feature flag #1954

Merged
merged 11 commits into from
Mar 15, 2017
Prev Previous commit
remove println from logs
  • Loading branch information
bradrydzewski committed Mar 14, 2017
commit fc46a5be0a77454cd7302dedcef48e5ae59aa2b7
1 change: 0 additions & 1 deletion server/rpc.go
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,6 @@ func (s *RPC) Done(c context.Context, id string) error { return nil }
func (s *RPC) Log(c context.Context, id string, line *rpc.Line) error {
entry := new(logging.Entry)
entry.Data, _ = json.Marshal(line)
fmt.Println(string(entry.Data))
s.logger.Write(c, id, entry)
return nil
}