diff --git a/src/main/scala/net/yoshinorin/qualtet/tasks/CreateOrUpdateAuthor.scala b/src/main/scala/net/yoshinorin/qualtet/tasks/CreateOrUpdateAuthor.scala index f355c40a..c2a88a5d 100644 --- a/src/main/scala/net/yoshinorin/qualtet/tasks/CreateOrUpdateAuthor.scala +++ b/src/main/scala/net/yoshinorin/qualtet/tasks/CreateOrUpdateAuthor.scala @@ -30,7 +30,6 @@ object CreateOrUpdateAuthor extends IOApp { Author(name = AuthorName(args(0)), displayName = AuthorDisplayName(args(1)), password = BCryptPassword(bcryptPasswordEncoder.encode(args(2)))) ) _ <- IO(logger.info(s"author created: ${author.asJson}")) - _ <- IO(println(s"author created: ${author.asJson}")) } yield author) .handleErrorWith { e => e match