All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mle.play.auth.TokenLogging.scala Maven / Gradle / Ivy

The newest version!
package com.mle.play.auth

import com.mle.util.Log

/**
 * @author Michael
 */
trait TokenLogging extends TokenStore with Log {
  abstract override def persist(token: Token): Unit = {
    super.persist(token)
    log debug s"Persisted token: $token"
  }


  abstract override def remove(token: Token): Unit = {
    super.remove(token)
    log debug s"Removed token: $token"
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy