in src/main/scala/com/gu/contentapi/models/FastlyLog.scala [34:41]
def apply(line: String): Option[FastlyLog] = {
for {
withoutHeader <- removeFastlyFootprint(line)
fastlyLog <- parseLine(withoutHeader)
} yield {
fastlyLog
}
}