/* * Copyright (c) 2010-2013 the original author or authors * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * */ package org.jmxtrans.agent.util.logging; import edu.umd.cs.findbugs.annotations.*; import org.jmxtrans.agent.JmxTransAgent; import javax.annotation.Nullable; import java.io.PrintStream; import java.sql.Timestamp; import java.util.HashMap; import java.util.Map; import java.util.logging.Level; /** * @author <a href="mailto:cleclerc@cloudbees.com">Cyrille Le Clerc</a> */ public class Logger { public static Logger getLogger(String name) { return new Logger(name); } private final String name; @SuppressFBWarnings("MS_SHOULD_BE_REFACTORED_TO_BE_FINAL") public static PrintStream out; static { if ("stderr".equalsIgnoreCase(System.getenv("JMX_TRANS_AGENT_CONSOLE")) || "stderr".equalsIgnoreCase(System.getProperty(Logger.class.getName() + ".console"))) { Logger.out = System.err; } else { Logger.out = System.out; } } @SuppressFBWarnings("MS_SHOULD_BE_REFACTORED_TO_BE_FINAL") public static Level level = Level.INFO; @Nullable public static Level parseLevel(@Nullable String level, @Nullable Level defaultValue) { Map<String, Level> julLevelsByName = new HashMap<String, Level>() { { put("TRACE", Level.FINEST); put("FINEST", Level.FINEST); put("FINER", Level.FINER); put("FINE", Level.FINE); put("DEBUG", Level.FINE); put("INFO", Level.INFO); put("WARNING", Level.WARNING); put("WARN", Level.WARNING); put("SEVERE", Level.SEVERE); } }; for(Map.Entry<String, Level> entry: julLevelsByName.entrySet()) { if(entry.getKey().equalsIgnoreCase(level)) return entry.getValue(); } return defaultValue; } static { String level = System.getProperty(Logger.class.getName() + ".level", "INFO"); Logger.level = parseLevel(level, Level.INFO); } public Logger(String name) { this.name = name; } public void log(Level level, String msg) { log(level, msg, null); } public void log(Level level, String msg, Throwable thrown) { if (!isLoggable(level)) { return; } Logger.out.println(new Timestamp(System.currentTimeMillis()) + " " + level + " [" + Thread.currentThread().getName() + "] " + name + " - " + msg); if (thrown != null) { thrown.printStackTrace(Logger.out); } } public void finest(String msg) { log(Level.FINEST, msg); } public void finer(String msg) { log(Level.FINER, msg); } public void fine(String msg) { log(Level.FINE, msg); } public void info(String msg) { log(Level.INFO, msg); } public void warning(String msg) { log(Level.WARNING, msg); } public boolean isLoggable(Level level) { if (level.intValue() < this.level.intValue()) { return false; } return true; } }