<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=ISO-8859-1"
http-equiv="Content-Type">
</head>
<body text="#000000" bgcolor="#ffffff">
One example location is in the
org.jboss.as.server.Bootstrap.Configuration inner class, which has
no logger. I need to know what the absolute path to the
standalone.xml file is that the server is trying to load. So, is
there a pattern to where we are allowing loggers vs Stdout?<br>
<br>
It looks like the logger categories are more along the lines of
subsystem names rather than simply using the class name which is
embedding the logger. Any usage guidelines to follow for that?<br>
<br>
public synchronized ExtensibleConfigurationPersister
getConfigurationPersister() {<br>
if (configurationPersister == null) {<br>
if (serverEnvironment == null) {<br>
configurationPersister = new
NullConfigurationPersister(new StandaloneXml(moduleLoader));<br>
}<br>
else {<br>
QName rootElement = new
QName(Namespace.CURRENT.getUriString(), "server");<br>
StandaloneXml parser = new
StandaloneXml(Module.getBootModuleLoader());<br>
File xmlFile = new
File(serverEnvironment.getServerConfigurationDir(),
"standalone.xml");<br>
<b> System.out.printf("Using standalone
configuration: %s", xmlFile.getAbsolutePath());<br>
</b> configurationPersister = new
BackupXmlConfigurationPersister(xmlFile, rootElement, parser,
parser);<br>
}<br>
}<br>
return configurationPersister;<br>
}<br>
<br>
On 3/23/11 2:03 PM, Scott Stark wrote:
<blockquote cite="mid:4D8A6023.5010005@redhat.com" type="cite">
<pre wrap="">With the problems with the debugger crashing the server vm, I'm finding
I need to add a lot of trace level statements to both the AS and
components to try to figure out why things don't work. What is the best
way to get these additions back into the AS codebase at least?
_______________________________________________
jboss-as7-dev mailing list
<a class="moz-txt-link-abbreviated" href="mailto:jboss-as7-dev@lists.jboss.org">jboss-as7-dev@lists.jboss.org</a>
<a class="moz-txt-link-freetext" href="https://lists.jboss.org/mailman/listinfo/jboss-as7-dev">https://lists.jboss.org/mailman/listinfo/jboss-as7-dev</a>
</pre>
</blockquote>
<br>
</body>
</html>