diff options
| author | Jeff Halter <868228+jhalter@users.noreply.github.com> | 2022-06-23 15:35:45 -0700 |
|---|---|---|
| committer | Jeff Halter <868228+jhalter@users.noreply.github.com> | 2022-06-23 15:35:45 -0700 |
| commit | 0da28a1fe47ffc60e40aeca9dddd7ab37e52a999 (patch) | |
| tree | 2e7f29ce2a78632ba263d9ea351d9750a31be622 /hotline/client_conn.go | |
| parent | c6a3fa2cdbf7eb78964a5df7622482cdd8782d74 (diff) | |
Improve logging readability
Diffstat (limited to 'hotline/client_conn.go')
| -rw-r--r-- | hotline/client_conn.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hotline/client_conn.go b/hotline/client_conn.go index 6a27977..1186947 100644 --- a/hotline/client_conn.go +++ b/hotline/client_conn.go @@ -78,7 +78,7 @@ func (cc *ClientConn) handleTransaction(transaction *Transaction) error { } } - cc.logger.Infow("Received Transaction", "RequestType", handler.Name) + cc.logger.Debugw("Received Transaction", "RequestType", handler.Name) transactions, err := handler.Handler(cc, transaction) if err != nil { |