Searched refs:debug (Results 1 - 25 of 384) sorted by relevance

1234567891011>>

/glassfish-3.1.2/common/mejb/src/main/java/org/glassfish/admin/mejb/
H A DRemoteListenerConnector.java57 private static final boolean debug = true; field in class:RemoteListenerConnector
58 private static void debug( final String s ) { if ( debug ) { System.out.println(s); } } method in class:RemoteListenerConnector
72 debug("RemoteListenerConnector.handleNotification()");
79 debug("RemoteListenerConnector.server.removeNotificationListener("+ (ObjectName)evt.getSource() + ", " + this + ")");
83 debug(toString() + ": " + e); //occurs normally if event was fowarded from J2EEDomain
85 debug(toString() + ": " + e1);
89 debug(toString() + ": " + e);
90 if (debug) {
92 debug("Namin
[all...]
H A DEventListenerProxy.java69 private static boolean debug = false; field in class:EventListenerProxy
76 if(debug) System.out.println(rmiName + " bound to existing registry at port " + portnum );
79 if(debug) System.out.println("Naming.rebind("+ proxyAddress +", eventProxy): " + re);
84 if(debug) System.out.println(rmiName + " bound to newly created registry at port " + portnum );
87 if(debug) e.printStackTrace();
90 if(debug) e.printStackTrace();
109 if (debug) System.out.println("EventListenerProxy:handleNotification(" + n + ")");
124 if (debug) System.out.println("EventListenerProxy.addListener()");
H A DListenerRegistry.java67 private static final boolean debug = true; field in class:ListenerRegistry
68 private static void debug( final String s ) { if ( debug ) { System.out.println(s); } } method in class:ListenerRegistry
98 debug("ListenerRegistry:addNotificationListener() to " + name);
124 debug("ListenerRegistry.removeNotificationListener: " + listener + " for " + name);
125 //debug("ListenerRegistry.listenerProxy = " + listenerConnectors.get(((RemoteListenerConnector) listener).getId()));
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/util/
H A DDebugOutImpl.java55 final boolean debug,
59 mDebug = debug;
66 final boolean debug)
68 this(id, debug, null);
96 public void setDebug(final boolean debug) argument
98 mDebug = debug;
101 public void debug(final Object... args) method in class:DebugOutImpl
115 debug(methodString(methodName, args));
126 debug(methodString(methodName, args) + ": " + msg);
53 DebugOutImpl( final String id, final boolean debug, final DebugSink sink) argument
64 DebugOutImpl( final String id, final boolean debug) argument
H A DDebugOut.java60 public void debug(final Object... args); method in interface:DebugOut
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/startup/
H A DEngineConfig.java97 private int debug = 0; field in class:EngineConfig
113 return (this.debug);
120 * @param debug The new debugging detail level
122 public void setDebug(int debug) { argument
123 this.debug = debug;
142 if (engineDebug > this.debug)
143 this.debug = engineDebug;
207 if (debug > 0)
218 if (debug >
[all...]
/glassfish-3.1.2/ant-tasks/src/main/java/org/glassfish/ant/tasks/
H A DStartServerTask.java62 public void setDebug(Boolean debug) { argument
63 addCommandParameter("debug", debug.toString());
/glassfish-3.1.2/jms/admin/src/main/java/com/sun/messaging/jmq/management/
H A DDefaultTrustManager.java64 private boolean debug = false; field in class:DefaultTrustManager
70 if ( debug ) {
/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/jts/CosTransactions/
H A DSenderReceiver.java97 static private final boolean debug = false; field in class:SenderReceiver
133 if (debug) {
140 if (debug) {
164 if (debug) {
171 if (debug) {
189 if (debug) {
196 if (debug) {
222 if (debug) {
229 if (debug) {
248 if (debug) {
[all...]
/glassfish-3.1.2/persistence/cmp/utility/src/main/java/com/sun/jdo/spi/persistence/utility/
H A DSemaphoreImpl.java90 boolean debug = _logger.isLoggable(Logger.FINEST);
92 if (debug) {
116 if (debug) {
127 boolean debug = _logger.isLoggable(Logger.FINEST);
129 if (debug) {
/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/
H A DPersistenceLauncher.java91 err.println(" -d | --debug");
124 boolean debug = false;
151 || arg.equals("--debug")) {//NOI18N
152 debug = true;
159 debug = false;
166 debug = false;
184 if (debug) {
189 out.println(" debug = " + debug);//NOI18N
210 if (debug) {
[all...]
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/loader/
H A DStandardClassLoader.java243 protected int debug = 0; field in class:StandardClassLoader
316 return (this.debug);
324 * @param debug The new debugging detail level
326 public void setDebug(int debug) { argument
328 this.debug = debug;
398 if (debug >= 1)
471 if (debug >= 3)
479 if (debug >= 4)
483 if (debug >
[all...]
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/authenticator/
H A DSingleSignOn.java156 return (this.debug);
162 * @param debug The new debugging detail level
164 public void setDebug(int debug) { argument
165 this.debug = debug;
236 if (debug >= 1)
265 if (debug >= 1)
290 if (debug >= 1)
341 if (debug >= 1)
344 if (debug >
[all...]
H A DSSLAuthenticator.java132 if (debug >= 1)
140 if (debug >= 1)
150 if (debug >= 1)
166 if (debug >= 1)
/glassfish-3.1.2/build/maven-glassfishbuild-plugin/src/main/java/com/sun/enterprise/build/
H A DSetPropertiesMojo.java89 getLog().debug("file = " + file);
93 getLog().debug(" propFileName = " + propFileName);
97 getLog().debug("mp.getBasedir() = " + mp.getBasedir());
102 getLog().debug("Loading property file: " + file);
/glassfish-3.1.2/admin/cli/src/main/java/com/sun/enterprise/admin/cli/
H A DRestartDomainCommand.java73 @Param(name = "debug", optional = true)
74 private Boolean debug; field in class:RestartDomainCommand
106 if (debug != null)
107 cmd.executeAndReturnOutput("restart-domain", "--debug", debug.toString());
135 * [--debug[=<debug(default:false)>]] [--domaindir <domaindir>]
138 * Only --debug, --domaindir, and the operand apply here.
142 if (debug != null) {
143 opts.add("--debug");
[all...]
/glassfish-3.1.2/cluster/cli/src/main/java/com/sun/enterprise/admin/cli/cluster/
H A DRestartLocalInstanceCommand.java63 @Param(name = "debug", optional = true)
64 private Boolean debug; field in class:RestartLocalInstanceCommand
89 if (debug != null)
90 cmd.executeAndReturnOutput("_restart-instance", "--debug", debug.toString());
110 * [--debug[=<debug(default:false)>]] [--sync <sync(default:normal)>]
114 * Only --debug, --nodedir, -node, and the operand apply here.
118 if (debug != null) {
119 opts.add("--debug");
[all...]
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/resource/pool/resizer/
H A DAssocWithThreadPoolResizer.java83 debug("Scaling down pool by quantity : " + scaleDownQuantity);
148 debug("PreferValidateOverRecreate: Keeping idle resource "
177 debug("Idle resources validated and kept in the steady pool for pool [ "
179 debug("Number of Idle resources freed for pool [ " + poolInfo + " ] - "
181 debug("Number of Invalid resources removed for pool [ " + poolInfo + " ] - "
184 debug("Number of Idle resources freed for pool [ " + poolInfo + " ] - "
186 debug("Number of Invalid resources removed for pool [ " + poolInfo + " ] - "
203 debug("Sending a set of free connections to RA, "
219 debug("No. of invalid connections received from RA : " + invalidConnectionsCount);
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/tests/appclient/
H A DAppClientEnvEntryValue.java89 if (debug) {
102 if (debug) {
111 if (debug) {
122 if (debug) {
131 if (debug) {
140 if (debug) {
149 if (debug) {
158 if (debug) {
167 if (debug) {
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/tests/web/
H A DWebEnvEntryValue.java92 if (debug) {
105 if (debug) {
114 if (debug) {
125 if (debug) {
134 if (debug) {
143 if (debug) {
152 if (debug) {
161 if (debug) {
170 if (debug) {
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/ssi/
H A DSSIServlet.java90 protected int debug = 0; field in class:SSIServlet
112 if (getServletConfig().getInitParameter("debug") != null)
113 debug = Integer.parseInt(getServletConfig().getInitParameter("debug"));
128 if (debug > 0)
129 log("SSIServlet.init() SSI invoker started with 'debug'=" + debug);
148 if (debug > 0) log("SSIServlet.doGet()");
168 if (debug > 0) log("SSIServlet.doPost()");
185 if (debug >
[all...]
/glassfish-3.1.2/tests/amx/src/org/glassfish/admin/amxtest/
H A DRunMeFirstTest.java91 final AMXDebugSupportMBean debug = getAMXDebugSupportMBean();
92 debug.setAll(true);
93 debug.setDefaultDebug(true);
94 debug.getOutputIDs();
/glassfish-3.1.2/admingui/devtests/src/test/java/org/glassfish/admingui/devtests/
H A DSpecificTestRule.java60 protected static boolean debug; field in class:SpecificTestRule
63 debug = Boolean.parseBoolean(SeleniumHelper.getParameter("debug", "false"));
88 if (debug) {
96 if (debug) {
/glassfish-3.1.2/common/glassfish-naming/src/main/java/com/sun/enterprise/naming/util/
H A DIIOPObjectFactory.java63 public static final boolean debug = false; field in class:IIOPObjectFactory
76 if (debug) {
84 if (debug) {
/glassfish-3.1.2/cluster/admin/src/main/java/com/sun/enterprise/v3/admin/cluster/
H A DRestartInstanceInstanceCommand.java68 @Param(name = "debug", optional = true)
69 private Boolean debug; field in class:RestartInstanceInstanceCommand
83 if (debug != null)
84 setDebug(debug);

Completed in 126 milliseconds

1234567891011>>