Package org.springframework.roo.support.logging

Examples of org.springframework.roo.support.logging.LoggingOutputStream


            }
        }
    }

    private void perform(final String commandLine) throws Exception {
        final LoggingOutputStream sysOut = new LoggingOutputStream(Level.INFO);
        final LoggingOutputStream sysErr = new LoggingOutputStream(Level.SEVERE);
        sysOut.setSourceClassName(FelixDelegator.class.getName());
        sysErr.setSourceClassName(FelixDelegator.class.getName());
        final PrintStream printStreamOut = new PrintStream(sysOut);
        final PrintStream printErrOut = new PrintStream(sysErr);
        try {
            shellService.executeCommand(commandLine, printStreamOut,
                    printErrOut);
View Full Code Here

TOP

Related Classes of org.springframework.roo.support.logging.LoggingOutputStream

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.