Merge pull request #18035 from agolubev/agolubev-#18034_remove_println_from_OutputStreamSubscriber

=str #18034 remove println call from OutputStreamSubscriber
This commit is contained in:
Konrad Malawski 2015-07-19 16:45:26 +02:00
commit 2f4d6d269f

View file

@ -37,7 +37,6 @@ private[akka] class OutputStreamSubscriber(os: OutputStream, bytesWrittenPromise
bytesWritten += bytes.length
} catch {
case ex: Exception
println("ex = " + ex)
bytesWrittenPromise.failure(ex)
cancel()
}