[Beginners Corner] - Re: Why does NOT JBoss save the server.log file any more?
by jtcnz
sorry..-_-!
<!-- A time/date based rolling appender -->
| <appender name="FILE" class="org.jboss.logging.appender.DailyRollingFileAppender">
| <errorHandler class="org.jboss.logging.util.OnlyOnceErrorHandler"/>
| <param name="File" value="${jboss.server.home.dir}/log/server.log"/>
| <param name="Append" value="false"/>
|
| <!-- Rollover at midnight each day -->
| <param name="DatePattern" value="'.'yyyy-MM-dd"/>
|
| <!-- Rollover at the top of each hour
| <param name="DatePattern" value="'.'yyyy-MM-dd-HH"/>
| -->
|
| <layout class="org.apache.log4j.PatternLayout">
| <!-- The default pattern: Date Priority [Category] Message\n -->
| <param name="ConversionPattern" value="%d %-5p [%c] %m%n"/>
|
| <!-- The full pattern: Date MS Priority [Category] (Thread:NDC) Message\n
| <param name="ConversionPattern" value="%d %-5r %-5p [%c] (%t:%x) %m%n"/>
| -->
| </layout>
| </appender>
This is the FILE appender.
Thanks
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4228766#4228766
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4228766
16 years, 12 months
[Tomcat, HTTPD, Servlets & JSP] - Using
by joeloveland
Hello,
In our seam application, it appears that if we ever have any content containing "? or '?, during rendering some sort of query string data will be appended at the point of the question mark. (For search engine purposes, I'll use text to explain that I'm referring to a double quote or single quote followed by a question mark.)
For example, if the .xhtml file contains:
<td>A"?B</td>
it will be rendered as:
<td>A"?key=ZJPxHNQozaqVlTW42chVysI.....
(I'm omitting a bunch of characters here...that key value is quite long). And the ending will be "consumed" by this...it seems to replace quite a bit of following markup, actually.
Does anyone know why this is happening? I apologize if this is the wrong place for this question. I'm really just trying to figure out who's translating "? into something else, so I can figure out what to do about it.
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4228737#4228737
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4228737
16 years, 12 months