Package org.sf.bee.commons.logging

Examples of org.sf.bee.commons.logging.Logger.info()


            if (cpu.hasErrors()) {
                logger.log(Level.SEVERE,
                        null, cpu.getLastError());
            }

            logger.info(report.toString());
        } catch (Throwable t) {
            logger.log(Level.SEVERE,
                    "Status Monitor unhandled exception: " + t.getMessage(), t);
        }
    }
View Full Code Here


                                    "but it was finished. " +
                                    "The service will be replaced.", name));
                        } else {
                            // task is already running.
                            task.setName(this.suggestServiceName(name));
                            logger.info(String.format(
                                    "The service '%s' is in list and is active. " +
                                    "Service is added with new name: '%s'",
                                    name, task.getName()));
                        }
                    } else {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.