log4j.xml, of course. Struts, itself, has nothing to do with logging. That is left to commons-logging, which it utilizes. And since commons-logging, in turn, utilizes logging implementations (using runtime discovery), your logging configuration would be for the logging implementation that you use.
The only possible extra config is a commons-logging.properties file that might explicitly state the logging configuration you wish to use. However, since commons-logging uses Log4j in preference to other implementations (if it is found, using discovery, at runtime), you usually don't need to provide such a config file. So, just configure Log4j and you should be golden. Jake Quoting Raghuveer <[EMAIL PROTECTED]>: > Where shall we nned to add below code.is it in struts-config or log.xml > > -----Original Message----- > From: Jacob Kjome [mailto:[EMAIL PROTECTED] > Sent: Monday, July 10, 2006 10:24 PM > To: Log4J Users List; [EMAIL PROTECTED] > Subject: Re: Struts and commons logging > > > Quoting Raghuveer <[EMAIL PROTECTED]>: > > > We use struts applications and loggging by log 4j. > > > > We are configuring loggers like normal MVS application. > > > > But, > > What is that i need to do if i want my struts application to use > > commons-logging for logging. > > > > I'm not quite sure I understand the question? commons-logging is a wrapper > for > logging implementations. If you are currently using Log4j for application > logging, then it is probably the implementation of choice for struts > logging. > Simply define a logger for struts... > > <logger name="org.apache.struts"> > <level value="INFO"/> > </logger> > > presumably, you've already defined an appender in the primordial <root> > logger, > so no need to define another here unless you care to. > > Jake > > > --------------------------------------------------------------------- > 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] > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
