Skip to content
Snippets Groups Projects
Commit 7876fc21 authored by dgelessus's avatar dgelessus
Browse files

Remove printlns that seem to break the stdout communication

parent 0284222e
No related branches found
No related tags found
No related merge requests found
......@@ -36,7 +36,6 @@ object Communicator : CommunicatorInterface {
*/
override fun sendDebugMessage(message: String, severity: MessageType) {
if(debugMode) {
println("Debug messages: $message")
client.logMessage(MessageParams(severity, message))
}
......
......@@ -95,14 +95,7 @@ class ProBKernel @Inject constructor(private val injector : Injector,
communicator.sendDebugMessage("processing errors", MessageType.Info)
newStateSpace.kill()
var bla : List<Diagnostic> = emptyList()
try {
bla = convertErrorItems(errors, file, communicator)
}catch (e : Exception){
println(e)
}
return bla
return convertErrorItems(errors, file, communicator)
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment