Skip to content

Commit

Permalink
Remove debug
Browse files Browse the repository at this point in the history
  • Loading branch information
KacperFKorban committed Mar 6, 2024
1 parent 8d47097 commit 3a97260
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion web/src/main/scala/web.scala
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ class WebServer(val scripts: Map[String, Script]) extends HtmlGen {
scriptName <- ZIO.fromEither(obj.get("script@name").get.asString.toRight("Missing script name"))
script = scripts(scriptName)
inputsValuesMap <- ZIO.fromEither(script.inputs.toList.parseJSONValue(obj))
_ <- ZIO.debug(inputsValuesMap)
inputsValues = script.inputs.toList.sortByArgs(inputsValuesMap)
result = script.run(inputsValues)
} yield Response.text(result)).onError(e => ZIO.debug(e.toString))
Expand Down

0 comments on commit 3a97260

Please sign in to comment.