WithQuietLogging configures the Proxy to log error messages only.
()
| 78 | |
| 79 | // WithQuietLogging configures the Proxy to log error messages only. |
| 80 | func WithQuietLogging() Option { |
| 81 | return func(c *Command) { |
| 82 | c.conf.Quiet = true |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | // WithDebugLogging configures the Proxy to log debug level messages. |
| 87 | func WithDebugLogging() Option { |
no outgoing calls