LoggerFormat is the common interface that every format must meet. Transform expects an arbitrary number of arguments and types, and it must transform them to a string. Arguments can be of type Connection, string, int, etc.
| 15 | // it must transform them to a string. |
| 16 | // Arguments can be of type Connection, string, int, etc. |
| 17 | type LoggerFormat interface { |
| 18 | Transform(...interface{}) string |
| 19 | } |
| 20 | |
| 21 | var ( |
| 22 | ourPid = "" |
nothing calls this directly
no outgoing calls
no test coverage detected