Searched defs:level (Results 1 - 25 of 68) sorted by relevance

123

/glassfish-3.1.2/core/logging/src/main/java/com/sun/enterprise/server/logging/
H A DFormatterDelegate.java53 public void format(StringBuilder buf, Level level); argument
/glassfish-3.1.2/core/logging/src/main/java/com/sun/enterprise/v3/logging/
H A DAgentFormatterDelegate.java67 public void format(StringBuilder buf, Level level) { argument
75 if (level.equals(Level.INFO) || level.equals(Level.CONFIG)) {
/glassfish-3.1.2/common/glassfish-naming/src/main/java/com/sun/enterprise/naming/impl/
H A DGroupInfoServiceObserverImpl.java69 private static void doLog( Level level, String fmt, Object... args ) { argument
70 if (_logger.isLoggable(level)) {
71 _logger.log( level, fmt, args ) ;
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/common/
H A DHTMLActionReporter.java89 private void write(int level, MessagePart part, PrintWriter writer) { argument
94 if (level>6) {
97 writer.println("<h" + level + ">" + mess + "</h" + level + ">");
102 write(level+1, child, writer);
/glassfish-3.1.2/admin/monitor/src/main/java/com/sun/enterprise/admin/monitor/registry/
H A DMonitoringLevelListener.java45 * be received for change in monitoring level from a prior
46 * level to a new one. Monitoring levels are defined by the
53 * Sets the monitoring level to a new level. Values are defined by
55 * @param level corresponding to MonitoringLevel OFF, LOW or HIGH
58 public void setLevel(MonitoringLevel level); argument
61 * Method to convey the change in monitoring level. It is a usual practice that
63 * to the changes in monitoring-level for various registered Stats objects. This
76 * Method to convey the change in monitoring level. The configuration
92 * When the level change
[all...]
/glassfish-3.1.2/appclient/client/acc/src/main/java/org/glassfish/appclient/client/acc/
H A DACCLogger.java63 * Historically the logging level specified in the sun-acc.xml is used to set the level
65 * via logging.properties as well, we make sure that each logger's level is
88 final Level level = chooseLevel(logService);
89 final Handler configuredFileHandler = createHandler(logService, level);
94 * Set existing loggers to at least the configured level.
105 if (level.intValue() <= Level.CONFIG.intValue()) {
111 level,
118 * Returns the logging level to use, checking the configured log level an
146 createHandler(final LogService logService, final Level level) argument
160 reviseLogger(final Logger logger, final Level level, final Handler handler) argument
[all...]
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/logging/
H A DLogging.java73 Sets the log level of the Logger for the specified module. This operation
77 @param level a log level
80 @Description( "Sets the log level of the Logger for the specified module" )
83 @Param(name="level") final String level );
86 Gets the log level of the Logger for the specified module, which may or may not
93 @Description( "Gets the log level of the Logger for the specified module" )
97 Sets the log level of the Logger for the specified module. This operation
135 @param level th
140 testEmitLogMessage( @aramname=�) final String level, @Param(name=�) final String message ) argument
[all...]
H A DLogAnalyzer.java124 is the count for that module of the requested level.
129 @param level
135 @Param(name="level") String level);
133 getErrorDistribution( @aramname=�) long timestamp, @Param(name=�) String level) argument
/glassfish-3.1.2/common/glassfish-naming/src/main/java/com/sun/enterprise/naming/util/
H A DLogOutputStream.java53 protected Level level; field in class:LogOutputStream
60 * Log to the specified facility at the default FINE level.
67 * Log to the specified facility at the specified level.
69 public LogOutputStream(String facility, Level level) { argument
71 this.level = level;
75 if (!logger.isLoggable(level))
97 if (!logger.isLoggable(level))
130 logger.log(level, msg);
/glassfish-3.1.2/admin/launcher/src/main/java/com/sun/enterprise/admin/launcher/
H A DGFLauncherLogger.java76 static synchronized void setConsoleLevel(Level level) { argument
79 h.setLevel(level);
130 * we change the log level for the Handler, we don't
/glassfish-3.1.2/common/annotation-framework/src/main/java/org/glassfish/apf/
H A DAnnotationProcessor.java146 public void log(Level level, AnnotationInfo locator, String localizedMessage); argument
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/util/
H A DEarlyLogger.java57 public final static void add(Level level, String message) { argument
58 messages.add(new LevelAndMessage(level, prepend + message));
60 logger.log(level, message);
69 public Level level; field in class:EarlyLogger.LevelAndMessage
73 level = l;
/glassfish-3.1.2/flashlight/framework/src/main/java/org/glassfish/flashlight/cli/
H A DMonitoringConfig.java128 final String moduleName, final String level, final ActionReport report) {
140 param.setConnectorConnectionPool(level);
142 param.setConnectorService(level);
144 param.setEjbContainer(level);
146 param.setHttpService(level);
148 param.setJdbcConnectionPool(level);
150 param.setJmsService(level);
152 param.setJvm(level);
154 param.setOrb(level);
156 param.setThreadPool(level);
127 setMonitoringLevel(MonitoringService ms, final String moduleName, final String level, final ActionReport report) argument
189 setMonitoringLevelX(MonitoringService ms, final String moduleName, final String level, final ActionReport report) argument
223 setContainerMonitoringLevel(MonitoringService ms, final String moduleName, final String level, final ActionReport report) argument
[all...]
H A DEnableMonitoring.java165 private void setModuleMonitoringLevel(String moduleName, String level, ActionReport report) { argument
174 if ((!isValidString(level)) || (!isValidLevel(level))) {
176 "Invalid level {0} for module name {1}", level, moduleName));
180 MonitoringConfig.setMonitoringLevel(ms, moduleName, level, report);
187 private boolean isValidLevel(String level) { argument
188 return ((level.equals("OFF")) || (level.equals("HIGH")) || (level
[all...]
/glassfish-3.1.2/persistence/cmp/utility/src/main/java/com/sun/jdo/spi/persistence/utility/logging/
H A DLoggerJDK13.java85 * level then the given message, and the exception dump,
89 * @param level The level for this message
93 public synchronized void log (int level, String msg, Throwable thrown) argument
95 if (isLoggable(level))
97 logInternal(level, getMessage(msg));
107 * @param level the level to print
110 protected synchronized void logInternal (int level, String message) argument
112 getPrintStream().println(getMessageWithPrefix(level, messag
[all...]
/glassfish-3.1.2/common/glassfish-api/src/main/java/org/glassfish/api/monitoring/
H A DContainerMonitoring.java84 * The monitoring level of this monitoring item
92 * Set the level of this monitoring module
93 * @param level new monitoring level
96 public void setLevel(String level) throws PropertyVetoException; argument
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/server/
H A DAppServerStartup.java202 final Level level = Level.FINE;
230 if (logger.isLoggable(level)) {
231 logger.log(level, init.type() + " Init done in " + (System.currentTimeMillis() - context.getCreationTime()) + " ms");
233 if (logger.isLoggable(level)) {
250 if (logger.isLoggable(level)) {
251 logger.log(level, "Running Startup services " + i.type());
254 if (logger.isLoggable(level)) {
255 logger.log(level, "Startup services finished" + startup);
271 if (logger.isLoggable(level)) {
288 printModuleStatus(systemRegistry, level);
346 printModuleStatus(ModulesRegistry registry, Level level) argument
[all...]
H A DReadableArchiveScannerAdapter.java97 private final static Level level = Level.FINE; field in class:ReadableArchiveScannerAdapter
140 if (logger.isLoggable(level)) {
141 logger.log(level, "Finished parsing " + this.uri);
201 if (logger.isLoggable(level)) {
202 logger.log(level, "Spawning sub parsing " + subArchive.getURI());
212 if (logger.isLoggable(level))
213 logger.log(level, "Closing sub archive " + subArchive.getURI());
239 // we don't process second level internal jars
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/annotation/handlers/
H A DAbstractHandler.java122 protected void log(Level level, AnnotationInfo ainfo, argument
124 if (Level.SEVERE.equals(level)) {
127 } else if (Level.WARNING.equals(level)) {
130 } else if (Level.FINE.equals(level)) {
135 level, ainfo, localizedMessage);
137 logger.log(level, localizedMessage);
/glassfish-3.1.2/admin/config-api/src/main/java/com/sun/enterprise/config/serverbeans/
H A DAmxPref.java62 Validation level for AMX MBeans (validated when an MBean is registered).
66 public void setValidationLevel(String level); argument
/glassfish-3.1.2/admin/config-api/src/main/java/org/glassfish/config/support/
H A DGenericCrudCommand.java90 // default level of noise, useful for just swithching these classes in debugging.
91 protected final Level level = Level.FINE; field in class:GenericCrudCommand
120 if (logger.isLoggable(level)) {
121 logger.log(level,"Generic method parent targeted type is " + parentTypeName);
260 if (logger.isLoggable(level)) {
261 logger.log(level, "Value of " + annotated.toString() + " is null");
268 if (logger.isLoggable(level)) {
269 logger.log(level, "Found that List<?> really is a List<" + itemType.toString() + ">");
291 if (logger.isLoggable(level)) {
293 logger.log(level, "Subtyp
[all...]
/glassfish-3.1.2/admin/server-mgmt/src/main/java/com/sun/enterprise/admin/servermgmt/util/
H A DDomainXmlSAXParser.java54 private int level = 0; field in class:DomainXmlSAXParser
74 level++;
75 if ( level==2 && PROPERTY.equals(qName)){
91 level--;
/glassfish-3.1.2/extras/upgrade/upgrade-jar/src/main/java/com/sun/enterprise/tools/upgrade/gui/
H A DProgressPanel.java171 * The level param is optional, but can be passed in so that the
177 void appendResultString(String res, Level level) { argument
178 if (level != null && DISPLAY_LOG_MIN_LEVEL > level.intValue()) {
/glassfish-3.1.2/persistence/cmp/support-ejb/src/main/java/com/sun/jdo/spi/persistence/support/ejb/ejbqlc/
H A DErrorMsg.java180 * This method is called when we want to log an exception in a given level.
182 * @param level log level
187 public static void log(int level, String text, Throwable nested) argument
190 logger.log(level, text, nested);
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/io/
H A DDeploymentDescriptorFile.java78 // error reporting level
460 * Sets the xml validation error reporting/recovering level.
461 * The reporting level is active only when xml validation is
467 public void setXMLValidationLevel(String level) { argument
468 validationLevel = level;
472 * @return the xml validation reporting level

Completed in 296 milliseconds

123