io.carpe.scalambda.testing.UnitTestLogger.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scalambda-testing_2.12 Show documentation
Show all versions of scalambda-testing_2.12 Show documentation
Utilities for testing Lambda Functions created with Scalambda.
The newest version!
package io.carpe.scalambda.testing
import com.amazonaws.services.lambda.runtime.LambdaLogger
object UnitTestLogger extends LambdaLogger {
override def log(message: String): Unit = System.out.println(message)
override def log(message: Array[Byte]): Unit = System.out.println(new String(message))
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy