hyracks/hyracks-server/src/main/java/org/apache/hyracks/server/process/HyracksServerProcess.java [47:64]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private void dump(InputStream input) {
        final int streamBufferSize = 1000;
        final Reader in = new InputStreamReader(input);
        new Thread(new Runnable() {
            public void run() {
                try {
                    char[] chars = new char[streamBufferSize];
                    int c;
                    while ((c = in.read(chars)) != -1) {
                        if (c > 0) {
                            System.out.print(String.valueOf(chars, 0, c));
                        }
                    }
                } catch (IOException e) {
                }
            }
        }).start();
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



hyracks/hyracks-maven-plugins/hyracks-virtualcluster-maven-plugin/src/main/java/org/apache/hyracks/maven/plugin/AbstractHyracksMojo.java [84:101]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected void dump(final InputStream input) {
        final int streamBufferSize = 1000;
        final Reader in = new InputStreamReader(input);
        new Thread(new Runnable() {
            public void run() {
                try {
                    char[] chars = new char[streamBufferSize];
                    int c;
                    while ((c = in.read(chars)) != -1) {
                        if (c > 0) {
                            System.out.print(String.valueOf(chars, 0, c));
                        }
                    }
                } catch (IOException e) {
                }
            }
        }).start();
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



