(String prefix)
| 44 | } |
| 45 | |
| 46 | private XdsLogger(String prefix) { |
| 47 | this.prefix = Preconditions.checkNotNull(prefix, "prefix"); |
| 48 | } |
| 49 | |
| 50 | public boolean isLoggable(XdsLogLevel level) { |
| 51 | Level javaLevel = toJavaLogLevel(level); |
nothing calls this directly
no test coverage detected