in src/main/kotlin/com/intellij/ideolog/lex/LogFileFormats.kt [36:41]
fun extractDate(tokens: List<LogToken>): LogToken? {
val idx = myRegexLogParser?.otherParsingSettings?.timeColumnId ?: return null
if(tokens.size > idx)
return tokens.asSequence().filter { !it.isSeparator }.elementAtOrNull(idx)
return null
}