blob: dae178261a93e3fbb14d9d4fa9e601be27ab7ec4 (
plain)
1
2
3
4
5
6
7
8
|
class LoggerSlf4j {
private static final org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(LoggerSlf4j.class);
}
class LoggerSlf4jOuter {
static class Inner {
private static final org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(LoggerSlf4jOuter.Inner.class);
}
}
|