remove debug print

This commit is contained in:
hrj 2021-04-12 07:10:00 +05:30
parent 6fd34c16ac
commit fb400a6aea

View File

@ -49,7 +49,7 @@ object Captcha {
val token = if (rs.next()) { val token = if (rs.next()) {
rs.getInt("token") rs.getInt("token")
} }
println("Added new challenge: " + token.toString) // println("Added new challenge: " + token.toString)
token.asInstanceOf[Int] token.asInstanceOf[Int]
} }