com.lucidchart.piezo.admin.controllers.ErrorLogging.scala Maven / Gradle / Ivy
The newest version!
package com.lucidchart.piezo.admin.controllers
import play.api.Logging
trait ErrorLogging { self: Logging =>
def logExceptions[T](value: => T): T = {
try {
value
}
catch {
case t: Throwable =>
logger.error("Caught exception initializing class", t)
throw t
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy