stringFormatter contains a list of parts which explains how to build the formatted string passed on to the logging backend.
| 145 | // stringFormatter contains a list of parts which explains how to build the |
| 146 | // formatted string passed on to the logging backend. |
| 147 | type stringFormatter struct { |
| 148 | parts []part |
| 149 | } |
| 150 | |
| 151 | // NewStringFormatter returns a new Formatter which outputs the log record as a |
| 152 | // string based on the 'verbs' specified in the format string. |
nothing calls this directly
no outgoing calls
no test coverage detected