[1723] Default new project with Swift and Java prints excessive errors

Using build 1723 I create a Java console application with swift.

It compiles fine, but when it runs it prints a whole bunch of errors.

Listening for transport dt_socket at address: 50806
Process started.
An exception of type: java.util.zip.ZipException occurred
An exception of type: java.util.zip.ZipException occurred
An exception of type: java.util.zip.ZipException occurred
An exception of type: java.util.zip.ZipException occurred
An exception of type: java.util.zip.ZipException occurred
An exception of type: java.util.zip.ZipException occurred
An exception of type: java.util.zip.ZipException occurred
An exception of type: java.util.zip.ZipException occurred
An exception of type: java.util.zip.ZipException occurred
An exception of type: java.util.zip.ZipException occurred
An exception of type: java.util.zip.ZipException occurred
An exception of type: java.util.zip.ZipException occurred
An exception of type: java.util.zip.ZipException occurred
An exception of type: java.util.zip.ZipException occurred
An exception of type: java.util.zip.ZipException occurred
An exception of type: java.util.zip.ZipException occurred
An exception of type: java.util.zip.ZipException occurred
An exception of type: java.util.zip.ZipException occurred
An exception of type: java.util.zip.ZipException occurred
An exception of type: java.util.zip.ZipException occurred
An exception of type: java.util.zip.ZipException occurred
An exception of type: java.lang.ClassNotFoundException occurred
An exception of type: java.lang.ClassNotFoundException occurred
An exception of type: java.lang.ClassNotFoundException occurred
An exception of type: java.lang.ClassNotFoundException occurred
An exception of type: java.lang.ClassNotFoundException occurred
An exception of type: java.lang.ClassNotFoundException occurred
An exception of type: java.lang.ClassNotFoundException occurred
An exception of type: java.lang.ClassNotFoundException occurred
An exception of type: java.lang.ClassNotFoundException occurred
An exception of type: java.lang.ClassNotFoundException occurred
An exception of type: java.lang.ClassNotFoundException occurred
An exception of type: java.lang.ClassNotFoundException occurred
The magic happens here.

Process consoleapplication10 terminated with exit code 0

Those are expected. Java throws a bunch of (caught) exceptions when running an app, and because you are running in the debugger these show a message (but don’t break, because the debugger is set to ignore these two exceptions, because they are expected).

But we’ll review options for how to make this more obvious and handle this even better.

Thanx,
marc