(InternalLogId logId)
| 35 | private final String prefix; |
| 36 | |
| 37 | public static XdsLogger withLogId(InternalLogId logId) { |
| 38 | Preconditions.checkNotNull(logId, "logId"); |
| 39 | return new XdsLogger(logId.toString()); |
| 40 | } |
| 41 | |
| 42 | static XdsLogger withPrefix(String prefix) { |
| 43 | return new XdsLogger(prefix); |
no test coverage detected