Java log: Localize Logging
/* Logging In Java with the JDK 1.4 Logging API and Apache log4j by Samudra Gupta Apress Copyright 2003 ISBN:1590590996 */ import java.util.logging.*; import java.io.*; import java.util.ResourceBundle; public class LocalizeLogging { private static Logger logger = Logger.getLogger("sam.logging"); private String rbName = null; public LocalizeLogging(String rbName) { this.rbName = rbName; } public void logMessage() { logger.logrb(Level.INFO, "LocalizeLogging", "logMessage", rbName,"success"); } public static void main(String args[]) { //collect the name of the resource bundle String rbName = "name"; LocalizeLogging lLogging = new LocalizeLogging(rbName); lLogging.logMessage(); } }