[Solved] Scala logging error, com.typesafe.scalalogging.LazyLogging.$init$ method not found


Your import is wrong. It should be

import com.typesafe.scalalogging.LazyLogging 

and not

import com.typesafe.scalalogging.slf4j.LazyLogging

4

solved Scala logging error, com.typesafe.scalalogging.LazyLogging.$init$ method not found