I'm also having probel with jdk logging, I'm not sure how the the following
methods of Logger should work

log(Level level, String msg, Object param1);
log(Level level, String msg, Object[] param1);

If I pass array of objects as a parameters to this method, my understanding
is it should print the
 toString representation to the handlers, but it's not. Documentation says
param1 in above method is parameter to the message, msg is a String, how can
we pass parameter to  string?

any ideas?

Thanks.

----- Original Message -----
From: "Navjot Singh" <[EMAIL PROTECTED]>
To: "Vic Cekvenich" <[EMAIL PROTECTED]>
Cc: "Struts Users List" <[EMAIL PROTECTED]>
Sent: Wednesday, March 19, 2003 3:07 AM
Subject: Re: jdk14 log


>
> Hi Vic,
>
> Properties File Attached. Remember, the logging takes the formatter
> specified in props if called from command prompt.
> When i called from servlet, it take XMLFormatter by default. However, if
you
> give BasicFormatter, it picks up SimpleFormatter.
>
> It just refuses to pick my customer Formatter from Servlet.
>
> Use this to read file
> =============
>    LogManager logman = LogManager.getLogManager();
>    FileInputStream in = new FileInputStream(filename);
>    logman.readConfiguration(in);
>
> Use this to test the config set
> ====================
>
>   LogManager manager = LogManager.getLogManager();
>   // Get all defined loggers
>   Enumeration names = manager.getLoggerNames();
>   while (names.hasMoreElements())
>   {
>        String loggername = (String)names.nextElement();
>        Logger logger = manager.getLogger(loggername);
>
>        System.out.println("-----------------------");
>        System.out.println("Logger name: >" + logger.getName() + "<");
>        System.out.println("Logger level: " + logger.getLevel());
>
>        Handler[] hs = logger.getHandlers();
>        for(int i=0;i<hs.length;i++)
>        {
>             System.out.println("\t" + hs[i].toString() + "#" +
> hs[i].getFormatter() + "->" + hs[i].getEncoding());
>        }
>   }
>
> ----- Original Message -----
> From: "Vic Cekvenich" <[EMAIL PROTECTED]>
> To: "Navjot Singh" <[EMAIL PROTECTED]>
> Sent: Tuesday, March 18, 2003 10:46 PM
> Subject: jdk14 log
>
>
> | Can you send me the properties files and the command that read it?
> | I am trying to get JDK1.4 log to work in struts.
> | thanks
> | .V
> |
> |
> |
>
>


----------------------------------------------------------------------------
----


> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to