How to access log4j's "final static public Level INFO"?

The following code gives the compiler error "Unresolved reference: INFO" for both lines. What am I missing?

import org.apache.log4j.Level

fun main(args : Array<String>) {
  val level1 = Level.INFO
  val level2 : org.apache.log4j.Level = org.apache.log4j.Level.INFO
}

It's a bug. Please, report it to our tracker. Thanks

Thanks, it's now reported as KT-1880