Index: plugin.properties =================================================================== RCS file: /cvsroot/tptp/monitoring/org.eclipse.hyades.logging.parsers/plugin.properties,v retrieving revision 1.10 diff -u -r1.10 plugin.properties --- plugin.properties 18 Aug 2005 22:35:36 -0000 1.10 +++ plugin.properties 7 Dec 2005 06:15:27 -0000 @@ -39,6 +39,10 @@ LOG_PARSER_CANNOT_READ_FILE_ERROR_ = IWAT0244E Cannot read the log file {0}. LOG_PARSER_PARSING_ERROR_ = IWAT0412E Errors occurred parsing the log file {0}. +#java util logging simple format exception +JAVA_UTIL_LOGGIN_GENERAL_EXCEPTION_MESSAGE_ERROR_ = IWAT0479E Error parsing Java Logging XML log. + + # Message strings: EXCEPTION = Exception EMBEDDED_EXCEPTION = Embedded exception follows: @@ -82,11 +86,20 @@ STR_WINDOWS_SYSTEM_LOG_IMPORT_VERSION = Microsoft Windows &version: STR_WINDOWS_SYSTEM_LOG_IMPORT_VERSION_TOOLTIP = Microsoft Windows version used to generate the system log file +STR_JAVA_UTIL_LOGGING_DEFAULT_LOG_IMPORT_FILE_PATH_UI_ = Java Logging XML log file &path: +STR_JAVA_UTIL_LOGGING_DEFAULT_LOG_IMPORT_FILE_PATH_TOOLTIP_UI_ = The absolute path of the Java Logging XML log file +STR_JAVA_UTIL_LOGGING_DEFAULT_LOG_IMPORT_VERSION_UI_ = Java &version +STR_JAVA_UTIL_LOGGING_DEFAULT_LOG_IMPORT_VERSION_TOOLTIP_UI_ = Java version used to generate the log file +STR_JAVA_UTIL_LOGGING_DEFAULT_LOG_IMPORT_NAME_UI_ = Java Logging XML log +STR_JAVA_UTIL_LOGGING_DEFAULT_LOG_IMPORT_DESCRIPTION_UI_ = Java Logging XML log files + + ExtPoint.LogParser = Log Parser ExtPoint.StaticParser = Static Log Parser ExtPoint.LogParserSet = Log Parser Set ApacheLogParsersSet = Parsers for Apache log types MicrosoftLogParsersSet = Parsers for Microsoft log types +MicrosoftLogParsersSet = Parsers for XML log types # ==================================================================== # %%% END OF TRANSLATED PROPERTIES %%% @@ -96,3 +109,4 @@ # ==================================================================== STR_WINDOWS_ALL = All(rules) +STR_JAVA_UTIL_LOGGING_DEFAULT_LOG_VERSIONS_UI_ = v1.4(static) \ No newline at end of file Index: plugin.xml =================================================================== RCS file: /cvsroot/tptp/monitoring/org.eclipse.hyades.logging.parsers/plugin.xml,v retrieving revision 1.17 diff -u -r1.17 plugin.xml --- plugin.xml 18 Aug 2005 22:35:36 -0000 1.17 +++ plugin.xml 7 Dec 2005 06:15:27 -0000 @@ -52,6 +52,15 @@ description="%MicrosoftLogParsersSet"/> + + + + + id="org.eclipse.hyades.logging.parsers.CommonBaseEventXMLLogParser" + parserSetId="org.eclipse.hyades.logging.parsers.xmlLogParserSet"> - + + + + + + + + + + + + + Index: src/org/eclipse/hyades/logging/parsers/ParserConstants.java =================================================================== RCS file: /cvsroot/tptp/monitoring/org.eclipse.hyades.logging.parsers/src/org/eclipse/hyades/logging/parsers/ParserConstants.java,v retrieving revision 1.8 diff -u -r1.8 ParserConstants.java --- src/org/eclipse/hyades/logging/parsers/ParserConstants.java 29 Sep 2005 15:20:16 -0000 1.8 +++ src/org/eclipse/hyades/logging/parsers/ParserConstants.java 7 Dec 2005 06:15:28 -0000 @@ -1,5 +1,8 @@ package org.eclipse.hyades.logging.parsers; +import java.net.InetAddress; + + /********************************************************************** * Copyright (c) 2005 IBM Corporation and others. * All rights reserved. This program and the accompanying materials @@ -362,4 +365,85 @@ * Constant for an other situation category name of a situation. */ public final static String OTHER_SITUATION_CATEGORY_NAME = "OtherSituation"; + + /** + * Constant for an internal reasoning scope of a situation type. + */ + public final static String EXTENDED_DATA_ELEMENT_NOVALUE = "noValue"; + + + public final static String LOCALHOST_ID; + public final static String LOCALHOST_ID_FORMAT; + public final static String LOCALHOST_NAME; + public final static String UNKNOWN_HOST = "Unknown Host"; + + static + { + String localHostId = null; + String localHostIdFormat = null; + String localHostName = null; + try + { + localHostId = java.net.InetAddress.getLocalHost().getHostAddress(); + if (localHostId.indexOf(':') != -1) + localHostIdFormat = ParserConstants.HOST_ID_FORMAT_IPV6; + else + localHostIdFormat = ParserConstants.HOST_ID_FORMAT_IPV4; + } + catch (Exception e) + { + localHostId = UNKNOWN_HOST; + localHostIdFormat = ParserConstants.NONE; + } + try + { + localHostName = InetAddress.getByName(localHostId).getHostName(); + } + catch (Exception e) + { + localHostName = null; + } + LOCALHOST_ID = localHostId; + LOCALHOST_ID_FORMAT = localHostIdFormat; + LOCALHOST_NAME = localHostName; + } + + //java.util.logging default log format + public final static String JAVA_UTIL_LOGGING_COMPONENTID_TYPE = "Application" ; + public final static String JAVA_UTIL_LOGGING_COMPONENT_TYPE = "Logging_Application" ; + public final static String JAVA_UTIL_LOGGING_EXEC_ENV = "Java" ; + public final static String JAVA_UTIL_LOGGING_STR_VERSION = "1.4"; + public final static String JAVA_UTIL_LOGGING_STR_PRODUCT_NAME = "Java Logging XML log"; + + public final static String JAVA_UTIL_LOGGING_STR_LOG = "log" ; + public final static String JAVA_UTIL_LOGGING_STR_RECORD = "record" ; + public final static String JAVA_UTIL_LOGGING_STR_MESSAGE = "record.message" ; + public final static String JAVA_UTIL_LOGGING_STR_DATE = "record.date" ; + public final static String JAVA_UTIL_LOGGING_STR_LOGGER = "record.logger" ; + public final static String JAVA_UTIL_LOGGING_STR_SEQUENCE = "record.sequence" ; + public final static String JAVA_UTIL_LOGGING_STR_MILLIS = "record.millis" ; + public final static String JAVA_UTIL_LOGGING_STR_LEVEL = "record.level" ; + public final static String JAVA_UTIL_LOGGING_STR_THREAD = "record.thread" ; + public final static String JAVA_UTIL_LOGGING_STR_METHOD = "record.method" ; + public final static String JAVA_UTIL_LOGGING_STR_CLASS = "record.class" ; + public final static String JAVA_UTIL_LOGGING_STR_KEY = "record.key" ; + public final static String JAVA_UTIL_LOGGING_STR_CATALOG = "record.catalog" ; + public final static String JAVA_UTIL_LOGGING_STR_PARAM = "record.param" ; + public final static String JAVA_UTIL_LOGGING_STR_EXCEPTION = "record.exception" ; + public final static String JAVA_UTIL_LOGGING_STR_EXCEPTION_MSG = "record.exception.message" ; + public final static String JAVA_UTIL_LOGGING_STR_EXCEPTION_FRAME = "record.exception.frame" ; + public final static String JAVA_UTIL_LOGGING_STR_EXCEPTION_FRAME_CLASS = "record.exception.frame.class" ; + public final static String JAVA_UTIL_LOGGING_STR_EXCEPTION_FRAME_METHOD = "record.exception.frame.method" ; + public final static String JAVA_UTIL_LOGGING_STR_EXCEPTION_FRAME_LINE = "record.exception.frame.line" ; + + public final static String JAVA_UTIL_LOGGING_STR_EDE_SEQUENCE_NUMBER = "sequenceNumber"; + public final static String JAVA_UTIL_LOGGING_STR_EDE_STACKTRACE = "stackTrace" ; + public final static String JAVA_UTIL_LOGGING_STR_EDE_LOGGER_NAME = "loggerName"; + public final static String JAVA_UTIL_LOGGING_STR_EDE_THREAD_ID = "threadID"; + public final static String JAVA_UTIL_LOGGING_STR_EDE_METHOD_NAME = "sourceMethodName"; + public final static String JAVA_UTIL_LOGGING_STR_EDE_CLASS_NAME = "sourceClassName"; + public final static String JAVA_UTIL_LOGGING_STR_EDE_NAME_STR = "name"; + public final static String JAVA_UTIL_LOGGING_STR_EDE_VALUE_STR = "value"; + + public final static String JAVA_UTIL_LOGGING_STR_STRINGARRAY = "stringArray" ; } Index: config/XML/Java/logging/example.log =================================================================== RCS file: config/XML/Java/logging/example.log diff -N config/XML/Java/logging/example.log --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ config/XML/Java/logging/example.log 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,18172 @@ + + + + + 2005-07-15T15:14:23 + 1121454863173 + 0 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + BWMCR3001E An attempt to contact the local host failed. + BWMCR3001E + <null> + + + 2005-07-15T15:14:23 + 1121454863443 + 1 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + BWMCR3002E The param1 data transfer attempted to send the param2 file to the computer on the param3 host failed more than param4 times and will be terminated. + BWMCR3002E + <null> + param1 + param2 + param3 + param4 + + + 2005-07-15T15:14:23 + 1121454863443 + 2 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863443 + 3 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863443 + 4 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863443 + 5 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863443 + 6 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863443 + 7 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863443 + 8 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863443 + 9 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863453 + 10 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863453 + 11 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863453 + 12 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863453 + 13 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863453 + 14 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863453 + 15 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863453 + 16 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863453 + 17 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863453 + 18 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863453 + 19 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863453 + 20 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863453 + 21 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863453 + 22 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863453 + 23 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863453 + 24 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863453 + 25 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863453 + 26 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863453 + 27 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863453 + 28 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863453 + 29 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863453 + 30 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863453 + 31 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863453 + 32 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863453 + 33 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863453 + 34 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863453 + 35 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863453 + 36 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863453 + 37 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863453 + 38 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863453 + 39 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863453 + 40 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863453 + 41 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863453 + 42 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863463 + 43 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863463 + 44 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863463 + 45 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863463 + 46 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863463 + 47 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863463 + 48 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863463 + 49 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863463 + 50 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863463 + 51 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863463 + 52 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863463 + 53 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863463 + 54 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863463 + 55 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863463 + 56 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863463 + 57 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863463 + 58 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863463 + 59 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863463 + 60 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863463 + 61 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863463 + 62 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863463 + 63 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863463 + 64 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863463 + 65 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863463 + 66 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863463 + 67 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863463 + 68 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863463 + 69 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863463 + 70 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863463 + 71 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863463 + 72 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863463 + 73 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863463 + 74 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863463 + 75 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863463 + 76 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863463 + 77 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863473 + 78 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863473 + 79 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863473 + 80 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863473 + 81 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863473 + 82 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863473 + 83 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863473 + 84 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863473 + 85 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863473 + 86 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863473 + 87 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863473 + 88 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863473 + 89 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863473 + 90 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863473 + 91 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863473 + 92 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863473 + 93 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863473 + 94 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863473 + 95 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863473 + 96 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863473 + 97 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863473 + 98 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863473 + 99 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863473 + 100 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863473 + 101 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863473 + 102 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863473 + 103 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863473 + 104 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863473 + 105 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863473 + 106 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863473 + 107 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863473 + 108 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863473 + 109 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863473 + 110 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863473 + 111 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863483 + 112 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863483 + 113 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863483 + 114 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863483 + 115 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863483 + 116 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863483 + 117 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863483 + 118 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863483 + 119 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863483 + 120 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863483 + 121 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863483 + 122 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863483 + 123 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863483 + 124 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863483 + 125 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863483 + 126 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863483 + 127 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863483 + 128 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863483 + 129 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863483 + 130 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863483 + 131 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863483 + 132 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863483 + 133 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863483 + 134 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863483 + 135 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863483 + 136 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863483 + 137 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863483 + 138 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863483 + 139 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863494 + 140 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863494 + 141 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863494 + 142 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863494 + 143 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863494 + 144 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863494 + 145 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863494 + 146 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863494 + 147 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863494 + 148 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863494 + 149 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863494 + 150 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863494 + 151 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863494 + 152 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863494 + 153 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863494 + 154 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863494 + 155 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863494 + 156 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863494 + 157 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863494 + 158 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863494 + 159 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863494 + 160 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + + + 2005-07-15T15:14:23 + 1121454863494 + 161 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863494 + 162 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863494 + 163 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0001 + + + 2005-07-15T15:14:23 + 1121454863494 + 164 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863494 + 165 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863494 + 166 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863494 + 167 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863494 + 168 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863494 + 169 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testLogMethod + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863494 + 170 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT + + java.lang.RuntimeException + + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 153 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863494 + 171 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT + + + 2005-07-15T15:14:23 + 1121454863494 + 172 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT true + + + 2005-07-15T15:14:23 + 1121454863494 + 173 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT false + + + 2005-07-15T15:14:23 + 1121454863494 + 174 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 238 + + + 2005-07-15T15:14:23 + 1121454863504 + 175 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT z + + + 2005-07-15T15:14:23 + 1121454863504 + 176 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863504 + 177 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863504 + 178 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863504 + 179 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863504 + 180 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT XXXXX + + + 2005-07-15T15:14:23 + 1121454863504 + 181 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT {{ZZ1ZZ,ZZ2ZZ,}} + + + 2005-07-15T15:14:23 + 1121454863504 + 182 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT {{{11111,22222,33333,44444,null,66666,}{11111,null,null,}{null,22222,null,}{null,null,33333,}{null,null,null,}{111111,null,null,}}} + + + 2005-07-15T15:14:23 + 1121454863504 + 183 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863504 + 184 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT + + java.lang.RuntimeException + + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 153 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863504 + 185 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT + + + 2005-07-15T15:14:23 + 1121454863504 + 186 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT true + + + 2005-07-15T15:14:23 + 1121454863514 + 187 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT false + + + 2005-07-15T15:14:23 + 1121454863514 + 188 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 238 + + + 2005-07-15T15:14:23 + 1121454863514 + 189 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT z + + + 2005-07-15T15:14:23 + 1121454863514 + 190 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863514 + 191 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863514 + 192 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863514 + 193 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863514 + 194 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT XXXXX + + + 2005-07-15T15:14:23 + 1121454863514 + 195 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT {{ZZ1ZZ,ZZ2ZZ,}} + + + 2005-07-15T15:14:23 + 1121454863514 + 196 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT {{{11111,22222,33333,44444,null,66666,}{11111,null,null,}{null,22222,null,}{null,null,33333,}{null,null,null,}{111111,null,null,}}} + + + 2005-07-15T15:14:23 + 1121454863514 + 197 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863514 + 198 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT + + java.lang.RuntimeException + + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 153 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863514 + 199 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT + + + 2005-07-15T15:14:23 + 1121454863514 + 200 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT true + + + 2005-07-15T15:14:23 + 1121454863514 + 201 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT false + + + 2005-07-15T15:14:23 + 1121454863514 + 202 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 238 + + + 2005-07-15T15:14:23 + 1121454863514 + 203 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT z + + + 2005-07-15T15:14:23 + 1121454863514 + 204 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863514 + 205 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863514 + 206 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863514 + 207 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863514 + 208 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT XXXXX + + + 2005-07-15T15:14:23 + 1121454863514 + 209 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT {{ZZ1ZZ,ZZ2ZZ,}} + + + 2005-07-15T15:14:23 + 1121454863514 + 210 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT {{{11111,22222,33333,44444,null,66666,}{11111,null,null,}{null,22222,null,}{null,null,33333,}{null,null,null,}{111111,null,null,}}} + + + 2005-07-15T15:14:23 + 1121454863514 + 211 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863514 + 212 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT + + java.lang.RuntimeException + + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 153 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863514 + 213 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT + + + 2005-07-15T15:14:23 + 1121454863514 + 214 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT true + + + 2005-07-15T15:14:23 + 1121454863524 + 215 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT false + + + 2005-07-15T15:14:23 + 1121454863524 + 216 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 238 + + + 2005-07-15T15:14:23 + 1121454863524 + 217 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT z + + + 2005-07-15T15:14:23 + 1121454863524 + 218 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863524 + 219 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863524 + 220 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863524 + 221 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863524 + 222 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT XXXXX + + + 2005-07-15T15:14:23 + 1121454863524 + 223 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT {{ZZ1ZZ,ZZ2ZZ,}} + + + 2005-07-15T15:14:23 + 1121454863524 + 224 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT {{{11111,22222,33333,44444,null,66666,}{11111,null,null,}{null,22222,null,}{null,null,33333,}{null,null,null,}{111111,null,null,}}} + + + 2005-07-15T15:14:23 + 1121454863524 + 225 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863524 + 226 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT + + java.lang.RuntimeException + + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 153 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863524 + 227 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT + + + 2005-07-15T15:14:23 + 1121454863524 + 228 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT true + + + 2005-07-15T15:14:23 + 1121454863524 + 229 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT false + + + 2005-07-15T15:14:23 + 1121454863524 + 230 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 238 + + + 2005-07-15T15:14:23 + 1121454863524 + 231 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT z + + + 2005-07-15T15:14:23 + 1121454863524 + 232 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863524 + 233 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863524 + 234 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863524 + 235 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863524 + 236 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT XXXXX + + + 2005-07-15T15:14:23 + 1121454863524 + 237 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT {{ZZ1ZZ,ZZ2ZZ,}} + + + 2005-07-15T15:14:23 + 1121454863524 + 238 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT {{{11111,22222,33333,44444,null,66666,}{11111,null,null,}{null,22222,null,}{null,null,33333,}{null,null,null,}{111111,null,null,}}} + + + 2005-07-15T15:14:23 + 1121454863524 + 239 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863524 + 240 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT + + java.lang.RuntimeException + + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 153 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863524 + 241 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT + + + 2005-07-15T15:14:23 + 1121454863524 + 242 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT true + + + 2005-07-15T15:14:23 + 1121454863524 + 243 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT false + + + 2005-07-15T15:14:23 + 1121454863524 + 244 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 238 + + + 2005-07-15T15:14:23 + 1121454863524 + 245 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT z + + + 2005-07-15T15:14:23 + 1121454863524 + 246 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863524 + 247 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863524 + 248 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863524 + 249 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863534 + 250 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT XXXXX + + + 2005-07-15T15:14:23 + 1121454863534 + 251 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT {{ZZ1ZZ,ZZ2ZZ,}} + + + 2005-07-15T15:14:23 + 1121454863534 + 252 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT {{{11111,22222,33333,44444,null,66666,}{11111,null,null,}{null,22222,null,}{null,null,33333,}{null,null,null,}{111111,null,null,}}} + + + 2005-07-15T15:14:23 + 1121454863534 + 253 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863534 + 254 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT + + java.lang.RuntimeException + + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 153 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863534 + 255 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT + + + 2005-07-15T15:14:23 + 1121454863534 + 256 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT true + + + 2005-07-15T15:14:23 + 1121454863534 + 257 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT false + + + 2005-07-15T15:14:23 + 1121454863534 + 258 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 238 + + + 2005-07-15T15:14:23 + 1121454863534 + 259 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT z + + + 2005-07-15T15:14:23 + 1121454863534 + 260 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863534 + 261 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863534 + 262 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863534 + 263 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863534 + 264 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT XXXXX + + + 2005-07-15T15:14:23 + 1121454863534 + 265 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT {{ZZ1ZZ,ZZ2ZZ,}} + + + 2005-07-15T15:14:23 + 1121454863534 + 266 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT {{{11111,22222,33333,44444,null,66666,}{11111,null,null,}{null,22222,null,}{null,null,33333,}{null,null,null,}{111111,null,null,}}} + + + 2005-07-15T15:14:23 + 1121454863534 + 267 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863534 + 268 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT + + java.lang.RuntimeException + + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 153 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863534 + 269 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT + + + 2005-07-15T15:14:23 + 1121454863534 + 270 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT true + + + 2005-07-15T15:14:23 + 1121454863534 + 271 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT false + + + 2005-07-15T15:14:23 + 1121454863534 + 272 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 238 + + + 2005-07-15T15:14:23 + 1121454863534 + 273 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT z + + + 2005-07-15T15:14:23 + 1121454863544 + 274 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863544 + 275 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863544 + 276 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863544 + 277 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863544 + 278 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT XXXXX + + + 2005-07-15T15:14:23 + 1121454863544 + 279 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT {{ZZ1ZZ,ZZ2ZZ,}} + + + 2005-07-15T15:14:23 + 1121454863544 + 280 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT {{{11111,22222,33333,44444,null,66666,}{11111,null,null,}{null,22222,null,}{null,null,33333,}{null,null,null,}{111111,null,null,}}} + + + 2005-07-15T15:14:23 + 1121454863544 + 281 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863544 + 282 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT + + java.lang.RuntimeException + + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 153 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863544 + 283 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT + + + 2005-07-15T15:14:23 + 1121454863544 + 284 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT true + + + 2005-07-15T15:14:23 + 1121454863544 + 285 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT false + + + 2005-07-15T15:14:23 + 1121454863544 + 286 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 238 + + + 2005-07-15T15:14:23 + 1121454863544 + 287 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT z + + + 2005-07-15T15:14:23 + 1121454863544 + 288 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863544 + 289 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863544 + 290 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863544 + 291 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863544 + 292 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT XXXXX + + + 2005-07-15T15:14:23 + 1121454863544 + 293 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT {{ZZ1ZZ,ZZ2ZZ,}} + + + 2005-07-15T15:14:23 + 1121454863544 + 294 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT {{{11111,22222,33333,44444,null,66666,}{11111,null,null,}{null,22222,null,}{null,null,33333,}{null,null,null,}{111111,null,null,}}} + + + 2005-07-15T15:14:23 + 1121454863544 + 295 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863544 + 296 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT + + java.lang.RuntimeException + + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 153 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863544 + 297 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT + + + 2005-07-15T15:14:23 + 1121454863544 + 298 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT true + + + 2005-07-15T15:14:23 + 1121454863544 + 299 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT false + + + 2005-07-15T15:14:23 + 1121454863544 + 300 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 238 + + + 2005-07-15T15:14:23 + 1121454863544 + 301 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT z + + + 2005-07-15T15:14:23 + 1121454863544 + 302 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863544 + 303 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863544 + 304 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863544 + 305 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863544 + 306 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT XXXXX + + + 2005-07-15T15:14:23 + 1121454863544 + 307 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT {{ZZ1ZZ,ZZ2ZZ,}} + + + 2005-07-15T15:14:23 + 1121454863544 + 308 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT {{{11111,22222,33333,44444,null,66666,}{11111,null,null,}{null,22222,null,}{null,null,33333,}{null,null,null,}{111111,null,null,}}} + + + 2005-07-15T15:14:23 + 1121454863544 + 309 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863544 + 310 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT + + java.lang.RuntimeException + + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 153 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863554 + 311 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT + + + 2005-07-15T15:14:23 + 1121454863554 + 312 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT true + + + 2005-07-15T15:14:23 + 1121454863554 + 313 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT false + + + 2005-07-15T15:14:23 + 1121454863554 + 314 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 238 + + + 2005-07-15T15:14:23 + 1121454863554 + 315 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT z + + + 2005-07-15T15:14:23 + 1121454863554 + 316 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863554 + 317 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863554 + 318 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863554 + 319 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863554 + 320 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT XXXXX + + + 2005-07-15T15:14:23 + 1121454863554 + 321 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT {{ZZ1ZZ,ZZ2ZZ,}} + + + 2005-07-15T15:14:23 + 1121454863554 + 322 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT {{{11111,22222,33333,44444,null,66666,}{11111,null,null,}{null,22222,null,}{null,null,33333,}{null,null,null,}{111111,null,null,}}} + + + 2005-07-15T15:14:23 + 1121454863554 + 323 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863554 + 324 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT + + java.lang.RuntimeException + + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 153 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863554 + 325 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT + + + 2005-07-15T15:14:23 + 1121454863554 + 326 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT true + + + 2005-07-15T15:14:23 + 1121454863554 + 327 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT false + + + 2005-07-15T15:14:23 + 1121454863554 + 328 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 238 + + + 2005-07-15T15:14:23 + 1121454863554 + 329 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT z + + + 2005-07-15T15:14:23 + 1121454863554 + 330 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863554 + 331 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863554 + 332 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863554 + 333 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863554 + 334 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT XXXXX + + + 2005-07-15T15:14:23 + 1121454863554 + 335 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT {{ZZ1ZZ,ZZ2ZZ,}} + + + 2005-07-15T15:14:23 + 1121454863554 + 336 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT {{{11111,22222,33333,44444,null,66666,}{11111,null,null,}{null,22222,null,}{null,null,33333,}{null,null,null,}{111111,null,null,}}} + + + 2005-07-15T15:14:23 + 1121454863554 + 337 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863554 + 338 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT + + java.lang.RuntimeException + + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 153 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863554 + 339 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT + + + 2005-07-15T15:14:23 + 1121454863554 + 340 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT true + + + 2005-07-15T15:14:23 + 1121454863554 + 341 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT false + + + 2005-07-15T15:14:23 + 1121454863554 + 342 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 238 + + + 2005-07-15T15:14:23 + 1121454863554 + 343 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT z + + + 2005-07-15T15:14:23 + 1121454863554 + 344 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863554 + 345 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863554 + 346 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863554 + 347 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863554 + 348 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT XXXXX + + + 2005-07-15T15:14:23 + 1121454863554 + 349 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT {{ZZ1ZZ,ZZ2ZZ,}} + + + 2005-07-15T15:14:23 + 1121454863554 + 350 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT {{{11111,22222,33333,44444,null,66666,}{11111,null,null,}{null,22222,null,}{null,null,33333,}{null,null,null,}{111111,null,null,}}} + + + 2005-07-15T15:14:23 + 1121454863554 + 351 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863554 + 352 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT + + java.lang.RuntimeException + + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 153 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863554 + 353 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT + + + 2005-07-15T15:14:23 + 1121454863554 + 354 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT true + + + 2005-07-15T15:14:23 + 1121454863554 + 355 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT false + + + 2005-07-15T15:14:23 + 1121454863554 + 356 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 238 + + + 2005-07-15T15:14:23 + 1121454863554 + 357 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT z + + + 2005-07-15T15:14:23 + 1121454863554 + 358 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863554 + 359 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863554 + 360 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863554 + 361 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863554 + 362 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT XXXXX + + + 2005-07-15T15:14:23 + 1121454863554 + 363 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT {{ZZ1ZZ,ZZ2ZZ,}} + + + 2005-07-15T15:14:23 + 1121454863554 + 364 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT {{{11111,22222,33333,44444,null,66666,}{11111,null,null,}{null,22222,null,}{null,null,33333,}{null,null,null,}{111111,null,null,}}} + + + 2005-07-15T15:14:23 + 1121454863554 + 365 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863554 + 366 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT + + java.lang.RuntimeException + + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 153 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863564 + 367 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT + + + 2005-07-15T15:14:23 + 1121454863564 + 368 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT true + + + 2005-07-15T15:14:23 + 1121454863564 + 369 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT false + + + 2005-07-15T15:14:23 + 1121454863564 + 370 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 238 + + + 2005-07-15T15:14:23 + 1121454863564 + 371 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT z + + + 2005-07-15T15:14:23 + 1121454863564 + 372 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863564 + 373 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863564 + 374 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863564 + 375 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863564 + 376 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT XXXXX + + + 2005-07-15T15:14:23 + 1121454863564 + 377 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT {{ZZ1ZZ,ZZ2ZZ,}} + + + 2005-07-15T15:14:23 + 1121454863564 + 378 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT {{{11111,22222,33333,44444,null,66666,}{11111,null,null,}{null,22222,null,}{null,null,33333,}{null,null,null,}{111111,null,null,}}} + + + 2005-07-15T15:14:23 + 1121454863564 + 379 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863564 + 380 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT + + java.lang.RuntimeException + + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 153 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863564 + 381 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT + + + 2005-07-15T15:14:23 + 1121454863564 + 382 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT true + + + 2005-07-15T15:14:23 + 1121454863564 + 383 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT false + + + 2005-07-15T15:14:23 + 1121454863564 + 384 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 238 + + + 2005-07-15T15:14:23 + 1121454863564 + 385 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT z + + + 2005-07-15T15:14:23 + 1121454863564 + 386 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863564 + 387 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863564 + 388 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863564 + 389 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863564 + 390 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT XXXXX + + + 2005-07-15T15:14:23 + 1121454863564 + 391 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT {{ZZ1ZZ,ZZ2ZZ,}} + + + 2005-07-15T15:14:23 + 1121454863564 + 392 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT {{{11111,22222,33333,44444,null,66666,}{11111,null,null,}{null,22222,null,}{null,null,33333,}{null,null,null,}{111111,null,null,}}} + + + 2005-07-15T15:14:23 + 1121454863564 + 393 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863564 + 394 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT + + java.lang.RuntimeException + + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 153 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863564 + 395 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT + + + 2005-07-15T15:14:23 + 1121454863564 + 396 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT true + + + 2005-07-15T15:14:23 + 1121454863564 + 397 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT false + + + 2005-07-15T15:14:23 + 1121454863564 + 398 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 238 + + + 2005-07-15T15:14:23 + 1121454863564 + 399 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT z + + + 2005-07-15T15:14:23 + 1121454863564 + 400 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863564 + 401 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863564 + 402 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863564 + 403 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863564 + 404 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT XXXXX + + + 2005-07-15T15:14:23 + 1121454863564 + 405 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT {{ZZ1ZZ,ZZ2ZZ,}} + + + 2005-07-15T15:14:23 + 1121454863564 + 406 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT {{{11111,22222,33333,44444,null,66666,}{11111,null,null,}{null,22222,null,}{null,null,33333,}{null,null,null,}{111111,null,null,}}} + + + 2005-07-15T15:14:23 + 1121454863564 + 407 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863564 + 408 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT + + java.lang.RuntimeException + + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 153 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863564 + 409 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT + + + 2005-07-15T15:14:23 + 1121454863564 + 410 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT true + + + 2005-07-15T15:14:23 + 1121454863574 + 411 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT false + + + 2005-07-15T15:14:23 + 1121454863574 + 412 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 238 + + + 2005-07-15T15:14:23 + 1121454863574 + 413 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT z + + + 2005-07-15T15:14:23 + 1121454863574 + 414 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863574 + 415 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863574 + 416 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863574 + 417 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863574 + 418 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT XXXXX + + + 2005-07-15T15:14:23 + 1121454863574 + 419 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT {{ZZ1ZZ,ZZ2ZZ,}} + + + 2005-07-15T15:14:23 + 1121454863574 + 420 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT {{{11111,22222,33333,44444,null,66666,}{11111,null,null,}{null,22222,null,}{null,null,33333,}{null,null,null,}{111111,null,null,}}} + + + 2005-07-15T15:14:23 + 1121454863574 + 421 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863574 + 422 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT + + java.lang.RuntimeException + + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 153 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863574 + 423 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT + + + 2005-07-15T15:14:23 + 1121454863574 + 424 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT true + + + 2005-07-15T15:14:23 + 1121454863574 + 425 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT false + + + 2005-07-15T15:14:23 + 1121454863574 + 426 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 238 + + + 2005-07-15T15:14:23 + 1121454863574 + 427 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT z + + + 2005-07-15T15:14:23 + 1121454863574 + 428 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863574 + 429 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863574 + 430 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863574 + 431 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863574 + 432 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT XXXXX + + + 2005-07-15T15:14:23 + 1121454863574 + 433 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT {{ZZ1ZZ,ZZ2ZZ,}} + + + 2005-07-15T15:14:23 + 1121454863574 + 434 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT {{{11111,22222,33333,44444,null,66666,}{11111,null,null,}{null,22222,null,}{null,null,33333,}{null,null,null,}{111111,null,null,}}} + + + 2005-07-15T15:14:23 + 1121454863574 + 435 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863574 + 436 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT + + java.lang.RuntimeException + + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 153 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863574 + 437 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT + + + 2005-07-15T15:14:23 + 1121454863574 + 438 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT true + + + 2005-07-15T15:14:23 + 1121454863574 + 439 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT false + + + 2005-07-15T15:14:23 + 1121454863574 + 440 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 238 + + + 2005-07-15T15:14:23 + 1121454863574 + 441 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT z + + + 2005-07-15T15:14:23 + 1121454863574 + 442 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863574 + 443 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863574 + 444 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863574 + 445 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863574 + 446 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT XXXXX + + + 2005-07-15T15:14:23 + 1121454863574 + 447 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT {{ZZ1ZZ,ZZ2ZZ,}} + + + 2005-07-15T15:14:23 + 1121454863574 + 448 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT {{{11111,22222,33333,44444,null,66666,}{11111,null,null,}{null,22222,null,}{null,null,33333,}{null,null,null,}{111111,null,null,}}} + + + 2005-07-15T15:14:23 + 1121454863574 + 449 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863574 + 450 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT + + java.lang.RuntimeException + + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 153 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863574 + 451 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT + + + 2005-07-15T15:14:23 + 1121454863574 + 452 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT true + + + 2005-07-15T15:14:23 + 1121454863574 + 453 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT false + + + 2005-07-15T15:14:23 + 1121454863574 + 454 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 238 + + + 2005-07-15T15:14:23 + 1121454863574 + 455 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT z + + + 2005-07-15T15:14:23 + 1121454863574 + 456 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863574 + 457 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863574 + 458 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863574 + 459 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863574 + 460 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT XXXXX + + + 2005-07-15T15:14:23 + 1121454863574 + 461 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT {{ZZ1ZZ,ZZ2ZZ,}} + + + 2005-07-15T15:14:23 + 1121454863574 + 462 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT {{{11111,22222,33333,44444,null,66666,}{11111,null,null,}{null,22222,null,}{null,null,33333,}{null,null,null,}{111111,null,null,}}} + + + 2005-07-15T15:14:23 + 1121454863574 + 463 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863574 + 464 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT + + java.lang.RuntimeException + + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 153 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863574 + 465 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT + + + 2005-07-15T15:14:23 + 1121454863574 + 466 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT true + + + 2005-07-15T15:14:23 + 1121454863584 + 467 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT false + + + 2005-07-15T15:14:23 + 1121454863584 + 468 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 238 + + + 2005-07-15T15:14:23 + 1121454863584 + 469 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT z + + + 2005-07-15T15:14:23 + 1121454863584 + 470 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863584 + 471 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863584 + 472 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863584 + 473 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863584 + 474 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT XXXXX + + + 2005-07-15T15:14:23 + 1121454863584 + 475 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT {{ZZ1ZZ,ZZ2ZZ,}} + + + 2005-07-15T15:14:23 + 1121454863584 + 476 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT {{{11111,22222,33333,44444,null,66666,}{11111,null,null,}{null,22222,null,}{null,null,33333,}{null,null,null,}{111111,null,null,}}} + + + 2005-07-15T15:14:23 + 1121454863584 + 477 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863584 + 478 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT + + java.lang.RuntimeException + + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 153 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863584 + 479 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT + + + 2005-07-15T15:14:23 + 1121454863584 + 480 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT true + + + 2005-07-15T15:14:23 + 1121454863584 + 481 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT false + + + 2005-07-15T15:14:23 + 1121454863584 + 482 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 238 + + + 2005-07-15T15:14:23 + 1121454863584 + 483 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT z + + + 2005-07-15T15:14:23 + 1121454863584 + 484 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863584 + 485 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863584 + 486 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863584 + 487 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863584 + 488 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT XXXXX + + + 2005-07-15T15:14:23 + 1121454863584 + 489 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT {{ZZ1ZZ,ZZ2ZZ,}} + + + 2005-07-15T15:14:23 + 1121454863584 + 490 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT {{{11111,22222,33333,44444,null,66666,}{11111,null,null,}{null,22222,null,}{null,null,33333,}{null,null,null,}{111111,null,null,}}} + + + 2005-07-15T15:14:23 + 1121454863584 + 491 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863584 + 492 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT + + java.lang.RuntimeException + + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 153 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863584 + 493 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT + + + 2005-07-15T15:14:23 + 1121454863584 + 494 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT true + + + 2005-07-15T15:14:23 + 1121454863584 + 495 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT false + + + 2005-07-15T15:14:23 + 1121454863584 + 496 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 238 + + + 2005-07-15T15:14:23 + 1121454863584 + 497 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT z + + + 2005-07-15T15:14:23 + 1121454863584 + 498 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863594 + 499 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863594 + 500 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863594 + 501 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863594 + 502 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT XXXXX + + + 2005-07-15T15:14:23 + 1121454863594 + 503 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT {{ZZ1ZZ,ZZ2ZZ,}} + + + 2005-07-15T15:14:23 + 1121454863594 + 504 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT {{{11111,22222,33333,44444,null,66666,}{11111,null,null,}{null,22222,null,}{null,null,33333,}{null,null,null,}{111111,null,null,}}} + + + 2005-07-15T15:14:23 + 1121454863594 + 505 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863594 + 506 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT + + java.lang.RuntimeException + + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 153 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863594 + 507 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT + + + 2005-07-15T15:14:23 + 1121454863594 + 508 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT true + + + 2005-07-15T15:14:23 + 1121454863594 + 509 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT false + + + 2005-07-15T15:14:23 + 1121454863594 + 510 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 238 + + + 2005-07-15T15:14:23 + 1121454863594 + 511 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT z + + + 2005-07-15T15:14:23 + 1121454863594 + 512 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863594 + 513 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863594 + 514 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863594 + 515 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863594 + 516 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT XXXXX + + + 2005-07-15T15:14:23 + 1121454863594 + 517 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT {{ZZ1ZZ,ZZ2ZZ,}} + + + 2005-07-15T15:14:23 + 1121454863594 + 518 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT {{{11111,22222,33333,44444,null,66666,}{11111,null,null,}{null,22222,null,}{null,null,33333,}{null,null,null,}{111111,null,null,}}} + + + 2005-07-15T15:14:23 + 1121454863594 + 519 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863594 + 520 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT + + java.lang.RuntimeException + + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 153 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863594 + 521 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT + + + 2005-07-15T15:14:23 + 1121454863594 + 522 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT true + + + 2005-07-15T15:14:23 + 1121454863594 + 523 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT false + + + 2005-07-15T15:14:23 + 1121454863594 + 524 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 238 + + + 2005-07-15T15:14:23 + 1121454863594 + 525 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT z + + + 2005-07-15T15:14:23 + 1121454863594 + 526 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863594 + 527 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863594 + 528 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863594 + 529 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863594 + 530 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT XXXXX + + + 2005-07-15T15:14:23 + 1121454863594 + 531 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT {{ZZ1ZZ,ZZ2ZZ,}} + + + 2005-07-15T15:14:23 + 1121454863594 + 532 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT {{{11111,22222,33333,44444,null,66666,}{11111,null,null,}{null,22222,null,}{null,null,33333,}{null,null,null,}{111111,null,null,}}} + + + 2005-07-15T15:14:23 + 1121454863594 + 533 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863594 + 534 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT + + java.lang.RuntimeException + + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 153 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863594 + 535 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT + + + 2005-07-15T15:14:23 + 1121454863594 + 536 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT true + + + 2005-07-15T15:14:23 + 1121454863594 + 537 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT false + + + 2005-07-15T15:14:23 + 1121454863594 + 538 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 238 + + + 2005-07-15T15:14:23 + 1121454863594 + 539 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT z + + + 2005-07-15T15:14:23 + 1121454863594 + 540 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863594 + 541 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863594 + 542 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863594 + 543 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863594 + 544 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT XXXXX + + + 2005-07-15T15:14:23 + 1121454863594 + 545 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT {{ZZ1ZZ,ZZ2ZZ,}} + + + 2005-07-15T15:14:23 + 1121454863594 + 546 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT {{{11111,22222,33333,44444,null,66666,}{11111,null,null,}{null,22222,null,}{null,null,33333,}{null,null,null,}{111111,null,null,}}} + + + 2005-07-15T15:14:23 + 1121454863594 + 547 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863594 + 548 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT + + java.lang.RuntimeException + + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 153 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863594 + 549 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT + + + 2005-07-15T15:14:23 + 1121454863594 + 550 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT true + + + 2005-07-15T15:14:23 + 1121454863594 + 551 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT false + + + 2005-07-15T15:14:23 + 1121454863594 + 552 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 238 + + + 2005-07-15T15:14:23 + 1121454863594 + 553 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT z + + + 2005-07-15T15:14:23 + 1121454863594 + 554 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863594 + 555 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863604 + 556 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863604 + 557 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863604 + 558 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT XXXXX + + + 2005-07-15T15:14:23 + 1121454863604 + 559 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT {{ZZ1ZZ,ZZ2ZZ,}} + + + 2005-07-15T15:14:23 + 1121454863604 + 560 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT {{{11111,22222,33333,44444,null,66666,}{11111,null,null,}{null,22222,null,}{null,null,33333,}{null,null,null,}{111111,null,null,}}} + + + 2005-07-15T15:14:23 + 1121454863604 + 561 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863604 + 562 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT + + java.lang.RuntimeException + + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 153 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863604 + 563 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT + + + 2005-07-15T15:14:23 + 1121454863604 + 564 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT true + + + 2005-07-15T15:14:23 + 1121454863604 + 565 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT false + + + 2005-07-15T15:14:23 + 1121454863604 + 566 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 238 + + + 2005-07-15T15:14:23 + 1121454863604 + 567 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT z + + + 2005-07-15T15:14:23 + 1121454863604 + 568 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863604 + 569 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863604 + 570 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863604 + 571 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863604 + 572 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT XXXXX + + + 2005-07-15T15:14:23 + 1121454863604 + 573 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT {{ZZ1ZZ,ZZ2ZZ,}} + + + 2005-07-15T15:14:23 + 1121454863604 + 574 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT {{{11111,22222,33333,44444,null,66666,}{11111,null,null,}{null,22222,null,}{null,null,33333,}{null,null,null,}{111111,null,null,}}} + + + 2005-07-15T15:14:23 + 1121454863604 + 575 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863604 + 576 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT + + java.lang.RuntimeException + + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 153 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863604 + 577 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT + + + 2005-07-15T15:14:23 + 1121454863604 + 578 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT true + + + 2005-07-15T15:14:23 + 1121454863604 + 579 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT false + + + 2005-07-15T15:14:23 + 1121454863604 + 580 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 238 + + + 2005-07-15T15:14:23 + 1121454863604 + 581 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT z + + + 2005-07-15T15:14:23 + 1121454863604 + 582 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863604 + 583 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863604 + 584 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863604 + 585 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863604 + 586 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT XXXXX + + + 2005-07-15T15:14:23 + 1121454863604 + 587 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT {{ZZ1ZZ,ZZ2ZZ,}} + + + 2005-07-15T15:14:23 + 1121454863604 + 588 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT {{{11111,22222,33333,44444,null,66666,}{11111,null,null,}{null,22222,null,}{null,null,33333,}{null,null,null,}{111111,null,null,}}} + + + 2005-07-15T15:14:23 + 1121454863604 + 589 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863604 + 590 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT + + java.lang.RuntimeException + + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 153 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863604 + 591 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT + + + 2005-07-15T15:14:23 + 1121454863604 + 592 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT true + + + 2005-07-15T15:14:23 + 1121454863604 + 593 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT false + + + 2005-07-15T15:14:23 + 1121454863604 + 594 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 238 + + + 2005-07-15T15:14:23 + 1121454863604 + 595 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT z + + + 2005-07-15T15:14:23 + 1121454863604 + 596 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863604 + 597 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863604 + 598 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863604 + 599 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863604 + 600 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT XXXXX + + + 2005-07-15T15:14:23 + 1121454863604 + 601 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT {{ZZ1ZZ,ZZ2ZZ,}} + + + 2005-07-15T15:14:23 + 1121454863604 + 602 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT {{{11111,22222,33333,44444,null,66666,}{11111,null,null,}{null,22222,null,}{null,null,33333,}{null,null,null,}{111111,null,null,}}} + + + 2005-07-15T15:14:23 + 1121454863604 + 603 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + ENTER ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863604 + 604 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT + + java.lang.RuntimeException + + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 153 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863604 + 605 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT + + + 2005-07-15T15:14:23 + 1121454863604 + 606 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT true + + + 2005-07-15T15:14:23 + 1121454863604 + 607 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT false + + + 2005-07-15T15:14:23 + 1121454863604 + 608 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 238 + + + 2005-07-15T15:14:23 + 1121454863604 + 609 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT z + + + 2005-07-15T15:14:23 + 1121454863604 + 610 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863604 + 611 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863614 + 612 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863614 + 613 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863614 + 614 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT XXXXX + + + 2005-07-15T15:14:23 + 1121454863614 + 615 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT {{ZZ1ZZ,ZZ2ZZ,}} + + + 2005-07-15T15:14:23 + 1121454863614 + 616 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT {{{11111,22222,33333,44444,null,66666,}{11111,null,null,}{null,22222,null,}{null,null,33333,}{null,null,null,}{111111,null,null,}}} + + + 2005-07-15T15:14:23 + 1121454863614 + 617 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + EXIT ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863614 + 618 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT + + java.lang.RuntimeException + + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 153 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863614 + 619 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT + + + 2005-07-15T15:14:23 + 1121454863614 + 620 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT true + + + 2005-07-15T15:14:23 + 1121454863614 + 621 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT false + + + 2005-07-15T15:14:23 + 1121454863614 + 622 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 238 + + + 2005-07-15T15:14:23 + 1121454863614 + 623 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT z + + + 2005-07-15T15:14:23 + 1121454863614 + 624 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863614 + 625 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863614 + 626 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863614 + 627 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863614 + 628 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT XXXXX + + + 2005-07-15T15:14:23 + 1121454863614 + 629 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT {{ZZ1ZZ,ZZ2ZZ,}} + + + 2005-07-15T15:14:23 + 1121454863614 + 630 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT {{{11111,22222,33333,44444,null,66666,}{11111,null,null,}{null,22222,null,}{null,null,33333,}{null,null,null,}{111111,null,null,}}} + + + 2005-07-15T15:14:23 + 1121454863614 + 631 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + NOTE ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863614 + 632 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT + + java.lang.RuntimeException + + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 153 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863614 + 633 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT + + + 2005-07-15T15:14:23 + 1121454863614 + 634 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT true + + + 2005-07-15T15:14:23 + 1121454863614 + 635 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT false + + + 2005-07-15T15:14:23 + 1121454863614 + 636 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 238 + + + 2005-07-15T15:14:23 + 1121454863614 + 637 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT z + + + 2005-07-15T15:14:23 + 1121454863614 + 638 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863614 + 639 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863614 + 640 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863614 + 641 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863614 + 642 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT XXXXX + + + 2005-07-15T15:14:23 + 1121454863614 + 643 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT {{ZZ1ZZ,ZZ2ZZ,}} + + + 2005-07-15T15:14:23 + 1121454863614 + 644 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT {{{11111,22222,33333,44444,null,66666,}{11111,null,null,}{null,22222,null,}{null,null,33333,}{null,null,null,}{111111,null,null,}}} + + + 2005-07-15T15:14:23 + 1121454863614 + 645 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + THROW ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863614 + 646 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT + + java.lang.RuntimeException + + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 153 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863614 + 647 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT + + + 2005-07-15T15:14:23 + 1121454863614 + 648 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT true + + + 2005-07-15T15:14:23 + 1121454863614 + 649 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT false + + + 2005-07-15T15:14:23 + 1121454863614 + 650 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 238 + + + 2005-07-15T15:14:23 + 1121454863614 + 651 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT z + + + 2005-07-15T15:14:23 + 1121454863614 + 652 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863614 + 653 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 3.14 + + + 2005-07-15T15:14:23 + 1121454863614 + 654 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863614 + 655 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863614 + 656 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT XXXXX + + + 2005-07-15T15:14:23 + 1121454863614 + 657 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT {{ZZ1ZZ,ZZ2ZZ,}} + + + 2005-07-15T15:14:23 + 1121454863614 + 658 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT {{{11111,22222,33333,44444,null,66666,}{11111,null,null,}{null,22222,null,}{null,null,33333,}{null,null,null,}{111111,null,null,}}} + + + 2005-07-15T15:14:23 + 1121454863614 + 659 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceMethod + 10 + CATCH ==>TTT 3 + + + 2005-07-15T15:14:23 + 1121454863614 + 660 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863614 + 661 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testLogMethodWithNullArgs + 10 + 0002 + + + 2005-07-15T15:14:23 + 1121454863614 + 662 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863614 + 663 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testLogMethodWithNullArgs + 10 + 0003 + + + 2005-07-15T15:14:23 + 1121454863614 + 664 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testIsEnabled2Method + 10 + Test Message in log. + + + 2005-07-15T15:14:23 + 1121454863614 + 665 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testIsEnabled2Method + 10 + Test Message in log with isEnabled() check. + + + 2005-07-15T15:14:23 + 1121454863624 + 666 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testIsEnabled2Method + 10 + Test Message in log. + + + 2005-07-15T15:14:23 + 1121454863624 + 667 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testIsEnabled2Method + 10 + Test Message in log with isEnabled() check. + + + 2005-07-15T15:14:23 + 1121454863624 + 668 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testIsEnabled2Method + 10 + Test Message in log. + + + 2005-07-15T15:14:23 + 1121454863624 + 669 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testIsEnabled2Method + 10 + Test Message in log with isEnabled() check. + + + 2005-07-15T15:14:23 + 1121454863624 + 670 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testIsEnabled2Method + 10 + Test Message in log. + + + 2005-07-15T15:14:23 + 1121454863624 + 671 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testIsEnabled2Method + 10 + Test Message in log with isEnabled() check. + + + 2005-07-15T15:14:23 + 1121454863624 + 672 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testIsEnabled2Method + 10 + Test Message in log. + + + 2005-07-15T15:14:23 + 1121454863624 + 673 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testIsEnabled2Method + 10 + Test Message in log with isEnabled() check. + + + 2005-07-15T15:14:23 + 1121454863624 + 674 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testIsEnabled2Method + 10 + Test Message in log. + + + 2005-07-15T15:14:23 + 1121454863624 + 675 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testIsEnabled2Method + 10 + Test Message in log with isEnabled() check. + + + 2005-07-15T15:14:23 + 1121454863624 + 676 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testIsEnabled2Method + 10 + Test Message in log. + + + 2005-07-15T15:14:23 + 1121454863624 + 677 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testIsEnabled2Method + 10 + Test Message in log with isEnabled() check. + + + 2005-07-15T15:14:23 + 1121454863624 + 678 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message. + + + 2005-07-15T15:14:23 + 1121454863624 + 679 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with Object. {Simple Object,} + + + 2005-07-15T15:14:23 + 1121454863624 + 680 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with Object array. {{foo,bah,}} + + + 2005-07-15T15:14:23 + 1121454863624 + 681 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with String Parameter. String Parameter + + + 2005-07-15T15:14:23 + 1121454863624 + 682 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with Throwable Parameter. + + java.lang.Exception + + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 305 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863624 + 683 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with boolean Parameter. true + + + 2005-07-15T15:14:23 + 1121454863624 + 684 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with byte Parameter. 120 + + + 2005-07-15T15:14:23 + 1121454863624 + 685 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with char Parameter. A + + + 2005-07-15T15:14:23 + 1121454863624 + 686 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with double Parameter. 3.1415926539 + + + 2005-07-15T15:14:23 + 1121454863624 + 687 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with float Parameter. 3.1415927 + + + 2005-07-15T15:14:23 + 1121454863624 + 688 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with int Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863624 + 689 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with long Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863624 + 690 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with short Parameter. 12345 + + + 2005-07-15T15:14:23 + 1121454863624 + 691 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message. + + + 2005-07-15T15:14:23 + 1121454863624 + 692 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with Object. {Simple Object,} + + + 2005-07-15T15:14:23 + 1121454863624 + 693 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with Object array. {{foo,bah,}} + + + 2005-07-15T15:14:23 + 1121454863624 + 694 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with String Parameter. String Parameter + + + 2005-07-15T15:14:23 + 1121454863624 + 695 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with Throwable Parameter. + + java.lang.Exception + + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 305 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863624 + 696 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with boolean Parameter. true + + + 2005-07-15T15:14:23 + 1121454863624 + 697 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with byte Parameter. 120 + + + 2005-07-15T15:14:23 + 1121454863624 + 698 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with char Parameter. A + + + 2005-07-15T15:14:23 + 1121454863624 + 699 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with double Parameter. 3.1415926539 + + + 2005-07-15T15:14:23 + 1121454863624 + 700 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with float Parameter. 3.1415927 + + + 2005-07-15T15:14:23 + 1121454863624 + 701 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with int Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863624 + 702 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with long Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863624 + 703 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with short Parameter. 12345 + + + 2005-07-15T15:14:23 + 1121454863624 + 704 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message. + + + 2005-07-15T15:14:23 + 1121454863624 + 705 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with Object. {Simple Object,} + + + 2005-07-15T15:14:23 + 1121454863634 + 706 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with Object array. {{foo,bah,}} + + + 2005-07-15T15:14:23 + 1121454863634 + 707 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with String Parameter. String Parameter + + + 2005-07-15T15:14:23 + 1121454863634 + 708 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with Throwable Parameter. + + java.lang.Exception + + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 305 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863634 + 709 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with boolean Parameter. true + + + 2005-07-15T15:14:23 + 1121454863634 + 710 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with byte Parameter. 120 + + + 2005-07-15T15:14:23 + 1121454863634 + 711 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with char Parameter. A + + + 2005-07-15T15:14:23 + 1121454863644 + 712 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with double Parameter. 3.1415926539 + + + 2005-07-15T15:14:23 + 1121454863644 + 713 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with float Parameter. 3.1415927 + + + 2005-07-15T15:14:23 + 1121454863644 + 714 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with int Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863644 + 715 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with long Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863644 + 716 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with short Parameter. 12345 + + + 2005-07-15T15:14:23 + 1121454863644 + 717 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message. + + + 2005-07-15T15:14:23 + 1121454863644 + 718 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with Object. {Simple Object,} + + + 2005-07-15T15:14:23 + 1121454863644 + 719 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with Object array. {{foo,bah,}} + + + 2005-07-15T15:14:23 + 1121454863644 + 720 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with String Parameter. String Parameter + + + 2005-07-15T15:14:23 + 1121454863644 + 721 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with Throwable Parameter. + + java.lang.Exception + + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 305 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863644 + 722 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with boolean Parameter. true + + + 2005-07-15T15:14:23 + 1121454863644 + 723 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with byte Parameter. 120 + + + 2005-07-15T15:14:23 + 1121454863644 + 724 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with char Parameter. A + + + 2005-07-15T15:14:23 + 1121454863644 + 725 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with double Parameter. 3.1415926539 + + + 2005-07-15T15:14:23 + 1121454863644 + 726 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with float Parameter. 3.1415927 + + + 2005-07-15T15:14:23 + 1121454863644 + 727 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with int Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863644 + 728 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with long Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863644 + 729 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with short Parameter. 12345 + + + 2005-07-15T15:14:23 + 1121454863644 + 730 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message. + + + 2005-07-15T15:14:23 + 1121454863644 + 731 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with Object. {Simple Object,} + + + 2005-07-15T15:14:23 + 1121454863654 + 732 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with Object array. {{foo,bah,}} + + + 2005-07-15T15:14:23 + 1121454863654 + 733 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with String Parameter. String Parameter + + + 2005-07-15T15:14:23 + 1121454863654 + 734 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with Throwable Parameter. + + java.lang.Exception + + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 305 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863654 + 735 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with boolean Parameter. true + + + 2005-07-15T15:14:23 + 1121454863654 + 736 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with byte Parameter. 120 + + + 2005-07-15T15:14:23 + 1121454863654 + 737 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with char Parameter. A + + + 2005-07-15T15:14:23 + 1121454863654 + 738 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with double Parameter. 3.1415926539 + + + 2005-07-15T15:14:23 + 1121454863654 + 739 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with float Parameter. 3.1415927 + + + 2005-07-15T15:14:23 + 1121454863654 + 740 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with int Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863654 + 741 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with long Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863654 + 742 + com.ibm.logging.icl.BasicLogTestCase + SEVERE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with short Parameter. 12345 + + + 2005-07-15T15:14:23 + 1121454863654 + 743 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message. + + + 2005-07-15T15:14:23 + 1121454863654 + 744 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with Object. {Simple Object,} + + + 2005-07-15T15:14:23 + 1121454863654 + 745 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with Object array. {{foo,bah,}} + + + 2005-07-15T15:14:23 + 1121454863654 + 746 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with String Parameter. String Parameter + + + 2005-07-15T15:14:23 + 1121454863654 + 747 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with Throwable Parameter. + + java.lang.Exception + + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 305 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863654 + 748 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with boolean Parameter. true + + + 2005-07-15T15:14:23 + 1121454863654 + 749 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with byte Parameter. 120 + + + 2005-07-15T15:14:23 + 1121454863664 + 750 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with char Parameter. A + + + 2005-07-15T15:14:23 + 1121454863664 + 751 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with double Parameter. 3.1415926539 + + + 2005-07-15T15:14:23 + 1121454863664 + 752 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with float Parameter. 3.1415927 + + + 2005-07-15T15:14:23 + 1121454863664 + 753 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with int Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863664 + 754 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with long Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863664 + 755 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with short Parameter. 12345 + + + 2005-07-15T15:14:23 + 1121454863664 + 756 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message. + + + 2005-07-15T15:14:23 + 1121454863664 + 757 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with Object. {Simple Object,} + + + 2005-07-15T15:14:23 + 1121454863664 + 758 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with Object array. {{foo,bah,}} + + + 2005-07-15T15:14:23 + 1121454863664 + 759 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with String Parameter. String Parameter + + + 2005-07-15T15:14:23 + 1121454863664 + 760 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with Throwable Parameter. + + java.lang.Exception + + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 305 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863664 + 761 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with boolean Parameter. true + + + 2005-07-15T15:14:23 + 1121454863664 + 762 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with byte Parameter. 120 + + + 2005-07-15T15:14:23 + 1121454863664 + 763 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with char Parameter. A + + + 2005-07-15T15:14:23 + 1121454863664 + 764 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with double Parameter. 3.1415926539 + + + 2005-07-15T15:14:23 + 1121454863664 + 765 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with float Parameter. 3.1415927 + + + 2005-07-15T15:14:23 + 1121454863664 + 766 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with int Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863664 + 767 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with long Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863664 + 768 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with short Parameter. 12345 + + + 2005-07-15T15:14:23 + 1121454863664 + 769 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message. + + + 2005-07-15T15:14:23 + 1121454863664 + 770 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with Object. {Simple Object,} + + + 2005-07-15T15:14:23 + 1121454863664 + 771 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with Object array. {{foo,bah,}} + + + 2005-07-15T15:14:23 + 1121454863664 + 772 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with String Parameter. String Parameter + + + 2005-07-15T15:14:23 + 1121454863664 + 773 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with Throwable Parameter. + + java.lang.Exception + + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 305 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863664 + 774 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with boolean Parameter. true + + + 2005-07-15T15:14:23 + 1121454863664 + 775 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with byte Parameter. 120 + + + 2005-07-15T15:14:23 + 1121454863664 + 776 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with char Parameter. A + + + 2005-07-15T15:14:23 + 1121454863664 + 777 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with double Parameter. 3.1415926539 + + + 2005-07-15T15:14:23 + 1121454863674 + 778 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with float Parameter. 3.1415927 + + + 2005-07-15T15:14:23 + 1121454863674 + 779 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with int Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863674 + 780 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with long Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863674 + 781 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with short Parameter. 12345 + + + 2005-07-15T15:14:23 + 1121454863674 + 782 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message. + + + 2005-07-15T15:14:23 + 1121454863674 + 783 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with Object. {Simple Object,} + + + 2005-07-15T15:14:23 + 1121454863674 + 784 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with Object array. {{foo,bah,}} + + + 2005-07-15T15:14:23 + 1121454863674 + 785 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with String Parameter. String Parameter + + + 2005-07-15T15:14:23 + 1121454863674 + 786 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with Throwable Parameter. + + java.lang.Exception + + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 305 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863674 + 787 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with boolean Parameter. true + + + 2005-07-15T15:14:23 + 1121454863674 + 788 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with byte Parameter. 120 + + + 2005-07-15T15:14:23 + 1121454863674 + 789 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with char Parameter. A + + + 2005-07-15T15:14:23 + 1121454863674 + 790 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with double Parameter. 3.1415926539 + + + 2005-07-15T15:14:23 + 1121454863674 + 791 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with float Parameter. 3.1415927 + + + 2005-07-15T15:14:23 + 1121454863674 + 792 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with int Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863674 + 793 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with long Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863674 + 794 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with short Parameter. 12345 + + + 2005-07-15T15:14:23 + 1121454863674 + 795 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message. + + + 2005-07-15T15:14:23 + 1121454863674 + 796 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with Object. {Simple Object,} + + + 2005-07-15T15:14:23 + 1121454863674 + 797 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with Object array. {{foo,bah,}} + + + 2005-07-15T15:14:23 + 1121454863674 + 798 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with String Parameter. String Parameter + + + 2005-07-15T15:14:23 + 1121454863674 + 799 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with Throwable Parameter. + + java.lang.Exception + + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 305 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863674 + 800 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with boolean Parameter. true + + + 2005-07-15T15:14:23 + 1121454863674 + 801 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with byte Parameter. 120 + + + 2005-07-15T15:14:23 + 1121454863674 + 802 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with char Parameter. A + + + 2005-07-15T15:14:23 + 1121454863684 + 803 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with double Parameter. 3.1415926539 + + + 2005-07-15T15:14:23 + 1121454863684 + 804 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with float Parameter. 3.1415927 + + + 2005-07-15T15:14:23 + 1121454863684 + 805 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with int Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863684 + 806 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with long Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863684 + 807 + com.ibm.logging.icl.BasicLogTestCase + WARNING + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with short Parameter. 12345 + + + 2005-07-15T15:14:23 + 1121454863684 + 808 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message. + + + 2005-07-15T15:14:23 + 1121454863684 + 809 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with Object. {Simple Object,} + + + 2005-07-15T15:14:23 + 1121454863684 + 810 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with Object array. {{foo,bah,}} + + + 2005-07-15T15:14:23 + 1121454863684 + 811 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with String Parameter. String Parameter + + + 2005-07-15T15:14:23 + 1121454863684 + 812 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with Throwable Parameter. + + java.lang.Exception + + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 305 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863684 + 813 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with boolean Parameter. true + + + 2005-07-15T15:14:23 + 1121454863684 + 814 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with byte Parameter. 120 + + + 2005-07-15T15:14:23 + 1121454863684 + 815 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with char Parameter. A + + + 2005-07-15T15:14:23 + 1121454863684 + 816 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with double Parameter. 3.1415926539 + + + 2005-07-15T15:14:23 + 1121454863684 + 817 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with float Parameter. 3.1415927 + + + 2005-07-15T15:14:23 + 1121454863684 + 818 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with int Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863684 + 819 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with long Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863684 + 820 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with short Parameter. 12345 + + + 2005-07-15T15:14:23 + 1121454863684 + 821 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message. + + + 2005-07-15T15:14:23 + 1121454863684 + 822 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with Object. {Simple Object,} + + + 2005-07-15T15:14:23 + 1121454863684 + 823 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with Object array. {{foo,bah,}} + + + 2005-07-15T15:14:23 + 1121454863684 + 824 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with String Parameter. String Parameter + + + 2005-07-15T15:14:23 + 1121454863684 + 825 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with Throwable Parameter. + + java.lang.Exception + + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 305 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863684 + 826 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with boolean Parameter. true + + + 2005-07-15T15:14:23 + 1121454863684 + 827 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with byte Parameter. 120 + + + 2005-07-15T15:14:23 + 1121454863684 + 828 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with char Parameter. A + + + 2005-07-15T15:14:23 + 1121454863684 + 829 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with double Parameter. 3.1415926539 + + + 2005-07-15T15:14:23 + 1121454863684 + 830 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with float Parameter. 3.1415927 + + + 2005-07-15T15:14:23 + 1121454863684 + 831 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with int Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863684 + 832 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with long Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863684 + 833 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with short Parameter. 12345 + + + 2005-07-15T15:14:23 + 1121454863684 + 834 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message. + + + 2005-07-15T15:14:23 + 1121454863684 + 835 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with Object. {Simple Object,} + + + 2005-07-15T15:14:23 + 1121454863684 + 836 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with Object array. {{foo,bah,}} + + + 2005-07-15T15:14:23 + 1121454863684 + 837 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with String Parameter. String Parameter + + + 2005-07-15T15:14:23 + 1121454863684 + 838 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with Throwable Parameter. + + java.lang.Exception + + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 305 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863684 + 839 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with boolean Parameter. true + + + 2005-07-15T15:14:23 + 1121454863684 + 840 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with byte Parameter. 120 + + + 2005-07-15T15:14:23 + 1121454863684 + 841 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with char Parameter. A + + + 2005-07-15T15:14:23 + 1121454863684 + 842 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with double Parameter. 3.1415926539 + + + 2005-07-15T15:14:23 + 1121454863684 + 843 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with float Parameter. 3.1415927 + + + 2005-07-15T15:14:23 + 1121454863684 + 844 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with int Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863684 + 845 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with long Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863684 + 846 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with short Parameter. 12345 + + + 2005-07-15T15:14:23 + 1121454863684 + 847 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message. + + + 2005-07-15T15:14:23 + 1121454863684 + 848 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with Object. {Simple Object,} + + + 2005-07-15T15:14:23 + 1121454863684 + 849 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with Object array. {{foo,bah,}} + + + 2005-07-15T15:14:23 + 1121454863684 + 850 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with String Parameter. String Parameter + + + 2005-07-15T15:14:23 + 1121454863684 + 851 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with Throwable Parameter. + + java.lang.Exception + + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 305 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863684 + 852 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with boolean Parameter. true + + + 2005-07-15T15:14:23 + 1121454863684 + 853 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with byte Parameter. 120 + + + 2005-07-15T15:14:23 + 1121454863684 + 854 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with char Parameter. A + + + 2005-07-15T15:14:23 + 1121454863684 + 855 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with double Parameter. 3.1415926539 + + + 2005-07-15T15:14:23 + 1121454863684 + 856 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with float Parameter. 3.1415927 + + + 2005-07-15T15:14:23 + 1121454863684 + 857 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with int Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863684 + 858 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with long Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863684 + 859 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with short Parameter. 12345 + + + 2005-07-15T15:14:23 + 1121454863684 + 860 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message. + + + 2005-07-15T15:14:23 + 1121454863684 + 861 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with Object. {Simple Object,} + + + 2005-07-15T15:14:23 + 1121454863684 + 862 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with Object array. {{foo,bah,}} + + + 2005-07-15T15:14:23 + 1121454863684 + 863 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with String Parameter. String Parameter + + + 2005-07-15T15:14:23 + 1121454863684 + 864 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with Throwable Parameter. + + java.lang.Exception + + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 305 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863684 + 865 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with boolean Parameter. true + + + 2005-07-15T15:14:23 + 1121454863694 + 866 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with byte Parameter. 120 + + + 2005-07-15T15:14:23 + 1121454863694 + 867 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with char Parameter. A + + + 2005-07-15T15:14:23 + 1121454863694 + 868 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with double Parameter. 3.1415926539 + + + 2005-07-15T15:14:23 + 1121454863694 + 869 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with float Parameter. 3.1415927 + + + 2005-07-15T15:14:23 + 1121454863694 + 870 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with int Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863694 + 871 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with long Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863694 + 872 + com.ibm.logging.icl.BasicLogTestCase + INFO + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with short Parameter. 12345 + + + 2005-07-15T15:14:23 + 1121454863694 + 873 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message. + + + 2005-07-15T15:14:23 + 1121454863694 + 874 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with Object. {Simple Object,} + + + 2005-07-15T15:14:23 + 1121454863694 + 875 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with Object array. {{foo,bah,}} + + + 2005-07-15T15:14:23 + 1121454863694 + 876 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with String Parameter. String Parameter + + + 2005-07-15T15:14:23 + 1121454863694 + 877 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with Throwable Parameter. + + java.lang.Exception + + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 305 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863694 + 878 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with boolean Parameter. true + + + 2005-07-15T15:14:23 + 1121454863694 + 879 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with byte Parameter. 120 + + + 2005-07-15T15:14:23 + 1121454863694 + 880 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with char Parameter. A + + + 2005-07-15T15:14:23 + 1121454863694 + 881 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with double Parameter. 3.1415926539 + + + 2005-07-15T15:14:23 + 1121454863694 + 882 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with float Parameter. 3.1415927 + + + 2005-07-15T15:14:23 + 1121454863694 + 883 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with int Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863694 + 884 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with long Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863694 + 885 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with short Parameter. 12345 + + + 2005-07-15T15:14:23 + 1121454863694 + 886 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message. + + + 2005-07-15T15:14:23 + 1121454863694 + 887 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with Object. {Simple Object,} + + + 2005-07-15T15:14:23 + 1121454863694 + 888 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with Object array. {{foo,bah,}} + + + 2005-07-15T15:14:23 + 1121454863694 + 889 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with String Parameter. String Parameter + + + 2005-07-15T15:14:23 + 1121454863694 + 890 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with Throwable Parameter. + + java.lang.Exception + + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 305 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863694 + 891 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with boolean Parameter. true + + + 2005-07-15T15:14:23 + 1121454863694 + 892 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with byte Parameter. 120 + + + 2005-07-15T15:14:23 + 1121454863694 + 893 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with char Parameter. A + + + 2005-07-15T15:14:23 + 1121454863704 + 894 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with double Parameter. 3.1415926539 + + + 2005-07-15T15:14:23 + 1121454863704 + 895 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with float Parameter. 3.1415927 + + + 2005-07-15T15:14:23 + 1121454863704 + 896 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with int Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863704 + 897 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with long Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863704 + 898 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with short Parameter. 12345 + + + 2005-07-15T15:14:23 + 1121454863704 + 899 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message. + + + 2005-07-15T15:14:23 + 1121454863704 + 900 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with Object. {Simple Object,} + + + 2005-07-15T15:14:23 + 1121454863704 + 901 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with Object array. {{foo,bah,}} + + + 2005-07-15T15:14:23 + 1121454863704 + 902 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with String Parameter. String Parameter + + + 2005-07-15T15:14:23 + 1121454863704 + 903 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with Throwable Parameter. + + java.lang.Exception + + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 305 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863704 + 904 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with boolean Parameter. true + + + 2005-07-15T15:14:23 + 1121454863704 + 905 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with byte Parameter. 120 + + + 2005-07-15T15:14:23 + 1121454863704 + 906 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with char Parameter. A + + + 2005-07-15T15:14:23 + 1121454863704 + 907 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with double Parameter. 3.1415926539 + + + 2005-07-15T15:14:23 + 1121454863704 + 908 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with float Parameter. 3.1415927 + + + 2005-07-15T15:14:23 + 1121454863704 + 909 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with int Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863704 + 910 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with long Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863704 + 911 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with short Parameter. 12345 + + + 2005-07-15T15:14:23 + 1121454863704 + 912 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message. + + + 2005-07-15T15:14:23 + 1121454863704 + 913 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with Object. {Simple Object,} + + + 2005-07-15T15:14:23 + 1121454863704 + 914 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with Object array. {{foo,bah,}} + + + 2005-07-15T15:14:23 + 1121454863704 + 915 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with String Parameter. String Parameter + + + 2005-07-15T15:14:23 + 1121454863704 + 916 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with Throwable Parameter. + + java.lang.Exception + + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 305 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863704 + 917 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with boolean Parameter. true + + + 2005-07-15T15:14:23 + 1121454863704 + 918 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with byte Parameter. 120 + + + 2005-07-15T15:14:23 + 1121454863704 + 919 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with char Parameter. A + + + 2005-07-15T15:14:23 + 1121454863704 + 920 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with double Parameter. 3.1415926539 + + + 2005-07-15T15:14:23 + 1121454863704 + 921 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with float Parameter. 3.1415927 + + + 2005-07-15T15:14:23 + 1121454863704 + 922 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with int Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863704 + 923 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with long Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863704 + 924 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with short Parameter. 12345 + + + 2005-07-15T15:14:23 + 1121454863704 + 925 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message. + + + 2005-07-15T15:14:23 + 1121454863704 + 926 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with Object. {Simple Object,} + + + 2005-07-15T15:14:23 + 1121454863704 + 927 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with Object array. {{foo,bah,}} + + + 2005-07-15T15:14:23 + 1121454863704 + 928 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with String Parameter. String Parameter + + + 2005-07-15T15:14:23 + 1121454863704 + 929 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with Throwable Parameter. + + java.lang.Exception + + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 305 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863704 + 930 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with boolean Parameter. true + + + 2005-07-15T15:14:23 + 1121454863704 + 931 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with byte Parameter. 120 + + + 2005-07-15T15:14:23 + 1121454863704 + 932 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with char Parameter. A + + + 2005-07-15T15:14:23 + 1121454863704 + 933 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with double Parameter. 3.1415926539 + + + 2005-07-15T15:14:23 + 1121454863704 + 934 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with float Parameter. 3.1415927 + + + 2005-07-15T15:14:23 + 1121454863704 + 935 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with int Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863704 + 936 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with long Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863704 + 937 + com.ibm.logging.icl.BasicLogTestCase + CONFIG + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with short Parameter. 12345 + + + 2005-07-15T15:14:23 + 1121454863704 + 938 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message. + + + 2005-07-15T15:14:23 + 1121454863704 + 939 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with Object. {Simple Object,} + + + 2005-07-15T15:14:23 + 1121454863704 + 940 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with Object array. {{foo,bah,}} + + + 2005-07-15T15:14:23 + 1121454863704 + 941 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with String Parameter. String Parameter + + + 2005-07-15T15:14:23 + 1121454863704 + 942 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with Throwable Parameter. + + java.lang.Exception + + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 305 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863704 + 943 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with boolean Parameter. true + + + 2005-07-15T15:14:23 + 1121454863704 + 944 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with byte Parameter. 120 + + + 2005-07-15T15:14:23 + 1121454863704 + 945 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with char Parameter. A + + + 2005-07-15T15:14:23 + 1121454863704 + 946 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with double Parameter. 3.1415926539 + + + 2005-07-15T15:14:23 + 1121454863704 + 947 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with float Parameter. 3.1415927 + + + 2005-07-15T15:14:23 + 1121454863704 + 948 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with int Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863704 + 949 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with long Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863704 + 950 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with short Parameter. 12345 + + + 2005-07-15T15:14:23 + 1121454863704 + 951 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message. + + + 2005-07-15T15:14:23 + 1121454863704 + 952 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with Object. {Simple Object,} + + + 2005-07-15T15:14:23 + 1121454863704 + 953 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with Object array. {{foo,bah,}} + + + 2005-07-15T15:14:23 + 1121454863704 + 954 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with String Parameter. String Parameter + + + 2005-07-15T15:14:23 + 1121454863704 + 955 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with Throwable Parameter. + + java.lang.Exception + + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 305 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863714 + 956 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with boolean Parameter. true + + + 2005-07-15T15:14:23 + 1121454863714 + 957 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with byte Parameter. 120 + + + 2005-07-15T15:14:23 + 1121454863714 + 958 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with char Parameter. A + + + 2005-07-15T15:14:23 + 1121454863714 + 959 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with double Parameter. 3.1415926539 + + + 2005-07-15T15:14:23 + 1121454863714 + 960 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with float Parameter. 3.1415927 + + + 2005-07-15T15:14:23 + 1121454863714 + 961 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with int Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863714 + 962 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with long Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863714 + 963 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with short Parameter. 12345 + + + 2005-07-15T15:14:23 + 1121454863714 + 964 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message. + + + 2005-07-15T15:14:23 + 1121454863714 + 965 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with Object. {Simple Object,} + + + 2005-07-15T15:14:23 + 1121454863714 + 966 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with Object array. {{foo,bah,}} + + + 2005-07-15T15:14:23 + 1121454863714 + 967 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with String Parameter. String Parameter + + + 2005-07-15T15:14:23 + 1121454863714 + 968 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with Throwable Parameter. + + java.lang.Exception + + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 305 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863714 + 969 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with boolean Parameter. true + + + 2005-07-15T15:14:23 + 1121454863714 + 970 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with byte Parameter. 120 + + + 2005-07-15T15:14:23 + 1121454863714 + 971 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with char Parameter. A + + + 2005-07-15T15:14:23 + 1121454863714 + 972 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with double Parameter. 3.1415926539 + + + 2005-07-15T15:14:23 + 1121454863714 + 973 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with float Parameter. 3.1415927 + + + 2005-07-15T15:14:23 + 1121454863714 + 974 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with int Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863714 + 975 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with long Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863714 + 976 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with short Parameter. 12345 + + + 2005-07-15T15:14:23 + 1121454863714 + 977 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message. + + + 2005-07-15T15:14:23 + 1121454863714 + 978 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with Object. {Simple Object,} + + + 2005-07-15T15:14:23 + 1121454863714 + 979 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with Object array. {{foo,bah,}} + + + 2005-07-15T15:14:23 + 1121454863714 + 980 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with String Parameter. String Parameter + + + 2005-07-15T15:14:23 + 1121454863714 + 981 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with Throwable Parameter. + + java.lang.Exception + + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 305 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863714 + 982 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with boolean Parameter. true + + + 2005-07-15T15:14:23 + 1121454863714 + 983 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with byte Parameter. 120 + + + 2005-07-15T15:14:23 + 1121454863714 + 984 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with char Parameter. A + + + 2005-07-15T15:14:23 + 1121454863714 + 985 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with double Parameter. 3.1415926539 + + + 2005-07-15T15:14:23 + 1121454863714 + 986 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with float Parameter. 3.1415927 + + + 2005-07-15T15:14:23 + 1121454863714 + 987 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with int Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863714 + 988 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with long Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863714 + 989 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with short Parameter. 12345 + + + 2005-07-15T15:14:23 + 1121454863714 + 990 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message. + + + 2005-07-15T15:14:23 + 1121454863714 + 991 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with Object. {Simple Object,} + + + 2005-07-15T15:14:23 + 1121454863714 + 992 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with Object array. {{foo,bah,}} + + + 2005-07-15T15:14:23 + 1121454863714 + 993 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with String Parameter. String Parameter + + + 2005-07-15T15:14:23 + 1121454863714 + 994 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with Throwable Parameter. + + java.lang.Exception + + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 305 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863714 + 995 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with boolean Parameter. true + + + 2005-07-15T15:14:23 + 1121454863714 + 996 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with byte Parameter. 120 + + + 2005-07-15T15:14:23 + 1121454863714 + 997 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with char Parameter. A + + + 2005-07-15T15:14:23 + 1121454863714 + 998 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with double Parameter. 3.1415926539 + + + 2005-07-15T15:14:23 + 1121454863714 + 999 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with float Parameter. 3.1415927 + + + 2005-07-15T15:14:23 + 1121454863714 + 1000 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with int Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863714 + 1001 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with long Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863714 + 1002 + com.ibm.logging.icl.BasicLogTestCase + FINE + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with short Parameter. 12345 + + + 2005-07-15T15:14:23 + 1121454863714 + 1003 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message. + + + 2005-07-15T15:14:23 + 1121454863714 + 1004 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with Object. {Simple Object,} + + + 2005-07-15T15:14:23 + 1121454863714 + 1005 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with Object array. {{foo,bah,}} + + + 2005-07-15T15:14:23 + 1121454863714 + 1006 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with String Parameter. String Parameter + + + 2005-07-15T15:14:23 + 1121454863714 + 1007 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with Throwable Parameter. + + java.lang.Exception + + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 305 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863714 + 1008 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with boolean Parameter. true + + + 2005-07-15T15:14:23 + 1121454863714 + 1009 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with byte Parameter. 120 + + + 2005-07-15T15:14:23 + 1121454863714 + 1010 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with char Parameter. A + + + 2005-07-15T15:14:23 + 1121454863714 + 1011 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with double Parameter. 3.1415926539 + + + 2005-07-15T15:14:23 + 1121454863714 + 1012 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with float Parameter. 3.1415927 + + + 2005-07-15T15:14:23 + 1121454863714 + 1013 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with int Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863714 + 1014 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with long Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863714 + 1015 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with short Parameter. 12345 + + + 2005-07-15T15:14:23 + 1121454863714 + 1016 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message. + + + 2005-07-15T15:14:23 + 1121454863714 + 1017 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with Object. {Simple Object,} + + + 2005-07-15T15:14:23 + 1121454863714 + 1018 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with Object array. {{foo,bah,}} + + + 2005-07-15T15:14:23 + 1121454863714 + 1019 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with String Parameter. String Parameter + + + 2005-07-15T15:14:23 + 1121454863714 + 1020 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with Throwable Parameter. + + java.lang.Exception + + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 305 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863724 + 1021 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with boolean Parameter. true + + + 2005-07-15T15:14:23 + 1121454863724 + 1022 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with byte Parameter. 120 + + + 2005-07-15T15:14:23 + 1121454863724 + 1023 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with char Parameter. A + + + 2005-07-15T15:14:23 + 1121454863724 + 1024 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with double Parameter. 3.1415926539 + + + 2005-07-15T15:14:23 + 1121454863724 + 1025 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with float Parameter. 3.1415927 + + + 2005-07-15T15:14:23 + 1121454863724 + 1026 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with int Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863724 + 1027 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with long Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863724 + 1028 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with short Parameter. 12345 + + + 2005-07-15T15:14:23 + 1121454863724 + 1029 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message. + + + 2005-07-15T15:14:23 + 1121454863724 + 1030 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with Object. {Simple Object,} + + + 2005-07-15T15:14:23 + 1121454863724 + 1031 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with Object array. {{foo,bah,}} + + + 2005-07-15T15:14:23 + 1121454863724 + 1032 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with String Parameter. String Parameter + + + 2005-07-15T15:14:23 + 1121454863724 + 1033 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with Throwable Parameter. + + java.lang.Exception + + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 305 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863724 + 1034 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with boolean Parameter. true + + + 2005-07-15T15:14:23 + 1121454863724 + 1035 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with byte Parameter. 120 + + + 2005-07-15T15:14:23 + 1121454863724 + 1036 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with char Parameter. A + + + 2005-07-15T15:14:23 + 1121454863724 + 1037 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with double Parameter. 3.1415926539 + + + 2005-07-15T15:14:23 + 1121454863724 + 1038 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with float Parameter. 3.1415927 + + + 2005-07-15T15:14:23 + 1121454863724 + 1039 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with int Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863724 + 1040 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with long Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863724 + 1041 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with short Parameter. 12345 + + + 2005-07-15T15:14:23 + 1121454863724 + 1042 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message. + + + 2005-07-15T15:14:23 + 1121454863724 + 1043 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with Object. {Simple Object,} + + + 2005-07-15T15:14:23 + 1121454863724 + 1044 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with Object array. {{foo,bah,}} + + + 2005-07-15T15:14:23 + 1121454863724 + 1045 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with String Parameter. String Parameter + + + 2005-07-15T15:14:23 + 1121454863724 + 1046 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with Throwable Parameter. + + java.lang.Exception + + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 305 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863724 + 1047 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with boolean Parameter. true + + + 2005-07-15T15:14:23 + 1121454863724 + 1048 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with byte Parameter. 120 + + + 2005-07-15T15:14:23 + 1121454863724 + 1049 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with char Parameter. A + + + 2005-07-15T15:14:23 + 1121454863724 + 1050 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with double Parameter. 3.1415926539 + + + 2005-07-15T15:14:23 + 1121454863724 + 1051 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with float Parameter. 3.1415927 + + + 2005-07-15T15:14:23 + 1121454863724 + 1052 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with int Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863724 + 1053 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with long Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863724 + 1054 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with short Parameter. 12345 + + + 2005-07-15T15:14:23 + 1121454863724 + 1055 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message. + + + 2005-07-15T15:14:23 + 1121454863724 + 1056 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with Object. {Simple Object,} + + + 2005-07-15T15:14:23 + 1121454863724 + 1057 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with Object array. {{foo,bah,}} + + + 2005-07-15T15:14:23 + 1121454863724 + 1058 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with String Parameter. String Parameter + + + 2005-07-15T15:14:23 + 1121454863724 + 1059 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with Throwable Parameter. + + java.lang.Exception + + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 305 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863724 + 1060 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with boolean Parameter. true + + + 2005-07-15T15:14:23 + 1121454863724 + 1061 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with byte Parameter. 120 + + + 2005-07-15T15:14:23 + 1121454863724 + 1062 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with char Parameter. A + + + 2005-07-15T15:14:23 + 1121454863724 + 1063 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with double Parameter. 3.1415926539 + + + 2005-07-15T15:14:23 + 1121454863724 + 1064 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with float Parameter. 3.1415927 + + + 2005-07-15T15:14:23 + 1121454863724 + 1065 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with int Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863724 + 1066 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with long Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863724 + 1067 + com.ibm.logging.icl.BasicLogTestCase + FINER + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with short Parameter. 12345 + + + 2005-07-15T15:14:23 + 1121454863724 + 1068 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message. + + + 2005-07-15T15:14:23 + 1121454863724 + 1069 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with Object. {Simple Object,} + + + 2005-07-15T15:14:23 + 1121454863724 + 1070 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with Object array. {{foo,bah,}} + + + 2005-07-15T15:14:23 + 1121454863724 + 1071 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with String Parameter. String Parameter + + + 2005-07-15T15:14:23 + 1121454863724 + 1072 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with Throwable Parameter. + + java.lang.Exception + + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 305 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863724 + 1073 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with boolean Parameter. true + + + 2005-07-15T15:14:23 + 1121454863724 + 1074 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with byte Parameter. 120 + + + 2005-07-15T15:14:23 + 1121454863724 + 1075 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with char Parameter. A + + + 2005-07-15T15:14:23 + 1121454863724 + 1076 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with double Parameter. 3.1415926539 + + + 2005-07-15T15:14:23 + 1121454863724 + 1077 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with float Parameter. 3.1415927 + + + 2005-07-15T15:14:23 + 1121454863724 + 1078 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with int Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863724 + 1079 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with long Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863724 + 1080 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + ENTER ==>Trace Message with short Parameter. 12345 + + + 2005-07-15T15:14:23 + 1121454863724 + 1081 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message. + + + 2005-07-15T15:14:23 + 1121454863724 + 1082 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with Object. {Simple Object,} + + + 2005-07-15T15:14:23 + 1121454863724 + 1083 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with Object array. {{foo,bah,}} + + + 2005-07-15T15:14:23 + 1121454863724 + 1084 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with String Parameter. String Parameter + + + 2005-07-15T15:14:23 + 1121454863724 + 1085 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with Throwable Parameter. + + java.lang.Exception + + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 305 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863724 + 1086 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with boolean Parameter. true + + + 2005-07-15T15:14:23 + 1121454863734 + 1087 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with byte Parameter. 120 + + + 2005-07-15T15:14:23 + 1121454863734 + 1088 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with char Parameter. A + + + 2005-07-15T15:14:23 + 1121454863734 + 1089 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with double Parameter. 3.1415926539 + + + 2005-07-15T15:14:23 + 1121454863734 + 1090 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with float Parameter. 3.1415927 + + + 2005-07-15T15:14:23 + 1121454863734 + 1091 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with int Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863734 + 1092 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with long Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863734 + 1093 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + EXIT ==>Trace Message with short Parameter. 12345 + + + 2005-07-15T15:14:23 + 1121454863734 + 1094 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message. + + + 2005-07-15T15:14:23 + 1121454863734 + 1095 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with Object. {Simple Object,} + + + 2005-07-15T15:14:23 + 1121454863734 + 1096 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with Object array. {{foo,bah,}} + + + 2005-07-15T15:14:23 + 1121454863734 + 1097 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with String Parameter. String Parameter + + + 2005-07-15T15:14:23 + 1121454863734 + 1098 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with Throwable Parameter. + + java.lang.Exception + + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 305 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863734 + 1099 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with boolean Parameter. true + + + 2005-07-15T15:14:23 + 1121454863734 + 1100 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with byte Parameter. 120 + + + 2005-07-15T15:14:23 + 1121454863734 + 1101 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with char Parameter. A + + + 2005-07-15T15:14:23 + 1121454863734 + 1102 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with double Parameter. 3.1415926539 + + + 2005-07-15T15:14:23 + 1121454863734 + 1103 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with float Parameter. 3.1415927 + + + 2005-07-15T15:14:23 + 1121454863734 + 1104 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with int Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863734 + 1105 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with long Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863734 + 1106 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + NOTE ==>Trace Message with short Parameter. 12345 + + + 2005-07-15T15:14:23 + 1121454863734 + 1107 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message. + + + 2005-07-15T15:14:23 + 1121454863734 + 1108 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with Object. {Simple Object,} + + + 2005-07-15T15:14:23 + 1121454863734 + 1109 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with Object array. {{foo,bah,}} + + + 2005-07-15T15:14:23 + 1121454863734 + 1110 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with String Parameter. String Parameter + + + 2005-07-15T15:14:23 + 1121454863734 + 1111 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with Throwable Parameter. + + java.lang.Exception + + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 305 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863734 + 1112 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with boolean Parameter. true + + + 2005-07-15T15:14:23 + 1121454863734 + 1113 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with byte Parameter. 120 + + + 2005-07-15T15:14:23 + 1121454863734 + 1114 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with char Parameter. A + + + 2005-07-15T15:14:23 + 1121454863734 + 1115 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with double Parameter. 3.1415926539 + + + 2005-07-15T15:14:23 + 1121454863734 + 1116 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with float Parameter. 3.1415927 + + + 2005-07-15T15:14:23 + 1121454863734 + 1117 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with int Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863734 + 1118 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with long Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863734 + 1119 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + THROW ==>Trace Message with short Parameter. 12345 + + + 2005-07-15T15:14:23 + 1121454863734 + 1120 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message. + + + 2005-07-15T15:14:23 + 1121454863734 + 1121 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with Object. {Simple Object,} + + + 2005-07-15T15:14:23 + 1121454863734 + 1122 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with Object array. {{foo,bah,}} + + + 2005-07-15T15:14:23 + 1121454863734 + 1123 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with String Parameter. String Parameter + + + 2005-07-15T15:14:23 + 1121454863734 + 1124 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with Throwable Parameter. + + java.lang.Exception + + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 305 + + + sun.reflect.NativeMethodAccessorImpl + invoke0 + + + sun.reflect.NativeMethodAccessorImpl + invoke + 39 + + + sun.reflect.DelegatingMethodAccessorImpl + invoke + 25 + + + java.lang.reflect.Method + invoke + 324 + + + junit.framework.TestCase + runTest + 154 + + + junit.framework.TestCase + runBare + 127 + + + junit.framework.TestResult$1 + protect + 106 + + + junit.framework.TestResult + runProtected + 124 + + + junit.framework.TestResult + run + 109 + + + junit.framework.TestCase + run + 118 + + + junit.framework.TestSuite + runTest + 208 + + + junit.framework.TestSuite + run + 203 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + run + 289 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + launch + 656 + + + org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner + main + 558 + + + + + 2005-07-15T15:14:23 + 1121454863734 + 1125 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with boolean Parameter. true + + + 2005-07-15T15:14:23 + 1121454863734 + 1126 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with byte Parameter. 120 + + + 2005-07-15T15:14:23 + 1121454863734 + 1127 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with char Parameter. A + + + 2005-07-15T15:14:23 + 1121454863734 + 1128 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with double Parameter. 3.1415926539 + + + 2005-07-15T15:14:23 + 1121454863734 + 1129 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with float Parameter. 3.1415927 + + + 2005-07-15T15:14:23 + 1121454863734 + 1130 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with int Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863734 + 1131 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with long Parameter. 123456 + + + 2005-07-15T15:14:23 + 1121454863734 + 1132 + com.ibm.logging.icl.BasicLogTestCase + FINEST + com.ibm.logging.icl.BasicLogTestCase + testTraceParameterTypes + 10 + CATCH ==>Trace Message with short Parameter. 12345 + + + Index: config/XML/Java/logging/static.adapter =================================================================== RCS file: config/XML/Java/logging/static.adapter diff -N config/XML/Java/logging/static.adapter --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ config/XML/Java/logging/static.adapter 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + Index: src/org/eclipse/hyades/logging/parsers/JavaLoggingSAXHandler.java =================================================================== RCS file: src/org/eclipse/hyades/logging/parsers/JavaLoggingSAXHandler.java diff -N src/org/eclipse/hyades/logging/parsers/JavaLoggingSAXHandler.java --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ src/org/eclipse/hyades/logging/parsers/JavaLoggingSAXHandler.java 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,395 @@ +/** + * Licensed Material - Property of IBM + * + * (C) Copyright IBM Corp. 2003, 2002 - All Rights Reserved. + * US Government Users Restricted Rights - Use, duplication or disclosure + * restricted by GSA ADP Schedule Contract with IBM Corp. + * + * Methods used to run the adapters (com.ibm.isl.lta.autoutils). + * + * CHANGE HISTORY + * + * Date Programmer Defect Description + * -------- ----------------------- ------- -------------------------------- + * 16/06/04 rohit.shetty@in.ibm.com Initial creation. + */ +package org.eclipse.hyades.logging.parsers; + +import java.io.IOException; +import java.io.StringReader; +import java.util.ArrayList; +import java.util.Iterator; +import java.util.List; +import java.util.Stack; + +import javax.xml.parsers.ParserConfigurationException; +import javax.xml.parsers.SAXParser; +import javax.xml.parsers.SAXParserFactory; + +import org.eclipse.hyades.logging.core.Guid; +import org.eclipse.hyades.logging.events.cbe.CommonBaseEvent; +import org.eclipse.hyades.logging.events.cbe.ComponentIdentification; +import org.eclipse.hyades.logging.events.cbe.EventFactory; +import org.eclipse.hyades.logging.events.cbe.ExtendedDataElement; +import org.eclipse.hyades.logging.events.cbe.MsgCatalogToken; +import org.eclipse.hyades.logging.events.cbe.MsgDataElement; +import org.eclipse.hyades.logging.events.cbe.ReportSituation; +import org.eclipse.hyades.logging.events.cbe.Situation; +import org.xml.sax.Attributes; +import org.xml.sax.InputSource; +import org.xml.sax.SAXException; +import org.xml.sax.XMLReader; +import org.xml.sax.helpers.DefaultHandler; +/* + * This class is the SAX handler that parses Java Logging XML + * and converts them to CBE. + */ +public class JavaLoggingSAXHandler extends DefaultHandler +{ + /** + * SAX Parser factory + */ + SAXParserFactory spfactory = SAXParserFactory.newInstance(); + + /** + * Stack to track parsed content. + */ + private Stack stack = null; + private StringBuffer charactersBuffer = null; + private EventFactory eventFactory = null; + + /** + * List of parsed CommonBaseEvents. + */ + private List commonBaseEvents = null; + /** + * Variables to hold the current CommonBaseEvent + */ + private CommonBaseEvent event = null; + /** + * Variables to hold the current Exception tag data + */ + private ExtendedDataElement exceptionEDE = null; + private ExtendedDataElement frameEDE = null; + + JavaLoggingSAXHandler(EventFactory evtFactory) + { + eventFactory = evtFactory; + commonBaseEvents = new ArrayList(); + stack = new Stack(); + charactersBuffer = new StringBuffer() ; + spfactory.setValidating(false); + } + + public void startDocument() + throws SAXException + { + commonBaseEvents.clear(); + stack.clear(); + clearBuffer(charactersBuffer); + } + + public void startElement(String namespaceURI, String localName,String qName, Attributes atts) + throws SAXException + { + push(qName); + String key = stackItems(); + if(key.equals(ParserConstants.JAVA_UTIL_LOGGING_STR_RECORD)) + { + event = eventFactory.createCommonBaseEvent(); + event.init(); + event.setGlobalInstanceId(Guid.generate()); + event.setSourceComponentId(getSourceComponentId()); + event.setSituation(getSituation()); + commonBaseEvents.add(event); + //stack.clear(); + } + else if(key.equals(ParserConstants.JAVA_UTIL_LOGGING_STR_EXCEPTION)) + { + exceptionEDE = createNoValueEDE(ParserConstants.JAVA_UTIL_LOGGING_STR_EDE_STACKTRACE); + event.addExtendedDataElement(exceptionEDE); + } + else if(key.equals(ParserConstants.JAVA_UTIL_LOGGING_STR_EXCEPTION_FRAME)) + { + frameEDE = createNoValueEDE(qName); + exceptionEDE.addChild(frameEDE); + } + } + + private MsgDataElement getMsgDataElement() + { + MsgDataElement msdDataElement = null; + if((msdDataElement = event.getMsgDataElement()) == null) + { + msdDataElement = eventFactory.createMsgDataElement() ; + msdDataElement.init() ; + msdDataElement.setMsgId(ParserConstants.UNKNOWN); + msdDataElement.setMsgIdType(ParserConstants.UNKNOWN); + event.setMsgDataElement(msdDataElement) ; + } + return msdDataElement; + } + + + public void endElement(String namespaceURI, String localName, String qName) + throws SAXException + { + String key = stackItems(); + String val = null; + if(((val = charactersBuffer.toString().trim()).length() != 0)) + { + if(/*key.equals(ParserConstants.JAVA_UTIL_LOGGING_STR_DATE)||*/key.equals(ParserConstants.JAVA_UTIL_LOGGING_STR_LOGGER)) + { + //eclipseworld.tutorial.demo + event.addExtendedDataElement(createStringEDE(ParserConstants.JAVA_UTIL_LOGGING_STR_EDE_LOGGER_NAME,val)); + } + else if(key.equals(ParserConstants.JAVA_UTIL_LOGGING_STR_MESSAGE)) + { + //Java Logging facility is configured from file 'server.properties'. + if (val.length() > 1024) + { + event.setMsg(val.substring(0, 1024)); + event.addExtendedDataElement(createStringEDE(ParserConstants.MESSAGE_EXTENDED_DATA_ELEMENT, val)); + } + else + { + event.setMsg(val); + } + } + else if(key.equals(ParserConstants.JAVA_UTIL_LOGGING_STR_MILLIS)) + { + //1123686194000 + event.setCreationTimeAsLong(Long.parseLong(val)); + } + else if(key.equals(ParserConstants.JAVA_UTIL_LOGGING_STR_SEQUENCE)) + { + //0 + event.addExtendedDataElement(createIntEDE(ParserConstants.JAVA_UTIL_LOGGING_STR_EDE_SEQUENCE_NUMBER,Integer.parseInt(val))); + } + else if(key.equals(ParserConstants.JAVA_UTIL_LOGGING_STR_LEVEL)) + { + //FINE + ExtendedDataElement level = createNoValueEDE(qName); + level.addChild(createStringEDE(ParserConstants.JAVA_UTIL_LOGGING_STR_EDE_NAME_STR,val)); + try + { + level.addChild(createIntEDE(ParserConstants.JAVA_UTIL_LOGGING_STR_EDE_VALUE_STR, java.util.logging.Level.parse(val).intValue())); + } + catch(Exception e) + {} + event.addExtendedDataElement(level); + } + else if(key.equals(ParserConstants.JAVA_UTIL_LOGGING_STR_THREAD)) + { + //0 + event.getSourceComponentId().setThreadId(val); + event.addExtendedDataElement(createStringEDE(ParserConstants.JAVA_UTIL_LOGGING_STR_EDE_THREAD_ID,val)); + } + else if(key.equals(ParserConstants.JAVA_UTIL_LOGGING_STR_METHOD)) + { + //0 + event.getSourceComponentId().setSubComponent(val); + event.addExtendedDataElement(createStringEDE(ParserConstants.JAVA_UTIL_LOGGING_STR_EDE_METHOD_NAME,val)); + } + else if(key.equals(ParserConstants.JAVA_UTIL_LOGGING_STR_CLASS)) + { + //eclipseworld.tutorial.demo.SimpleHTTPProxyServer + event.getSourceComponentId().setComponent(val); + event.addExtendedDataElement(createStringEDE(ParserConstants.JAVA_UTIL_LOGGING_STR_EDE_CLASS_NAME,val)); + } + else if(key.equals(ParserConstants.JAVA_UTIL_LOGGING_STR_KEY)) + { + //BWMCR3001E + MsgDataElement msdDataElement = getMsgDataElement(); + msdDataElement.setMsgCatalogId(val); + } + else if(key.equals(ParserConstants.JAVA_UTIL_LOGGING_STR_CATALOG)) + { + MsgDataElement msdDataElement = getMsgDataElement(); + msdDataElement.setMsgCatalog(val); + msdDataElement.setMsgCatalogType(ParserConstants.JAVA_UTIL_LOGGING_EXEC_ENV); + } + else if(key.equals(ParserConstants.JAVA_UTIL_LOGGING_STR_PARAM)) + { + MsgDataElement msdDataElement = getMsgDataElement(); + MsgCatalogToken msgCatalogTok = eventFactory.createMsgCatalogToken(); + msgCatalogTok.init(); + msgCatalogTok.setValue(val); + msdDataElement.getMsgCatalogTokens().add(msgCatalogTok); + } + else if(key.equals(ParserConstants.JAVA_UTIL_LOGGING_STR_EXCEPTION_MSG)) + { + exceptionEDE.addChild(createStringEDE(qName,val)); + } + else if(key.equals(ParserConstants.JAVA_UTIL_LOGGING_STR_EXCEPTION_FRAME_CLASS)) + { + frameEDE.addChild(createStringEDE(qName,val)); + } + else if(key.equals(ParserConstants.JAVA_UTIL_LOGGING_STR_EXCEPTION_FRAME_METHOD)) + { + frameEDE.addChild(createStringEDE(qName,val)); + } + else if(key.equals(ParserConstants.JAVA_UTIL_LOGGING_STR_EXCEPTION_FRAME_LINE)) + { + frameEDE.addChild(createStringEDE(qName,val)); + } + } + pop(); + } + + public void characters(char[] ch, int start, int length) + throws SAXException + { + charactersBuffer.append(new String(ch, start, length)); + } + + public void parse(String xmlString) + throws IOException, SAXException, ParserConfigurationException + { + SAXParser saxParser = spfactory.newSAXParser(); + XMLReader xmlReader = saxParser.getXMLReader(); + xmlReader.setContentHandler(this); + xmlReader.setErrorHandler(this); + StringReader characterStream = new StringReader(xmlString); + InputSource XmlSource = new InputSource(characterStream); + xmlReader.parse(XmlSource); + } + + public void endDocument() + throws SAXException + { + + } + + public int size() + { + return commonBaseEvents.size(); + } + + public CommonBaseEvent[] getCommonBaseEvents() + { + if ((commonBaseEvents != null) && (!commonBaseEvents.isEmpty())) { return (((CommonBaseEvent[]) (commonBaseEvents.toArray(new CommonBaseEvent[commonBaseEvents.size()])))); } + return null; + } + + protected ExtendedDataElement createStringEDE(String name, String value) + { + ExtendedDataElement extendedDataElement = eventFactory.createExtendedDataElement(); + extendedDataElement.setName(name); + + int valuesLength = 0; + + if ((value != null) && ((valuesLength = value.trim().length()) > 1024)) + { + extendedDataElement.setTypeAsInt(ExtendedDataElement.TYPE_STRING_ARRAY_VALUE); + ArrayList valuesParts = new ArrayList(); + for (int counter = 0; counter < valuesLength; counter += 1024) + { + valuesParts.add(value.substring(counter, Math.min((counter + 1024), valuesLength))); + } + extendedDataElement.setValues(((String[]) (valuesParts.toArray(new String[valuesParts.size()])))); + } + else + { + extendedDataElement.setTypeAsInt(ExtendedDataElement.TYPE_STRING_VALUE); + extendedDataElement.setValues(new String[] {value}); + } + return extendedDataElement; + } + protected ExtendedDataElement createIntEDE(String name, int value) + { + ExtendedDataElement extendedDataElement = eventFactory.createExtendedDataElement(); + extendedDataElement.setName(name); + extendedDataElement.setValuesAsInt(value); + return extendedDataElement; + } + protected ExtendedDataElement createNoValueEDE(String name) + { + ExtendedDataElement extendedDataElement = eventFactory.createExtendedDataElement(); + extendedDataElement.setName(name); + extendedDataElement.setType(ParserConstants.EXTENDED_DATA_ELEMENT_NOVALUE); + return extendedDataElement; + } + protected Situation getSituation() + { + ReportSituation reportSituation = eventFactory.createReportSituation(); + reportSituation.setReasoningScope(ParserConstants.INTERNAL_REASONING_SCOPE); + reportSituation.setReportCategory(ParserConstants.LOG_REPORT_CATEGORY); + Situation cbeSituation = eventFactory.createSituation(); + cbeSituation.setCategoryName(ParserConstants.REPORT_SITUATION_CATEGORY_NAME); + cbeSituation.setSituationType(reportSituation); + return cbeSituation; + } + + protected ComponentIdentification getSourceComponentId() + { + ComponentIdentification sourceComponentId = eventFactory.createComponentIdentification(); + sourceComponentId.init(); + sourceComponentId.setComponent(ParserConstants.UNKNOWN); + sourceComponentId.setComponentIdType(ParserConstants.JAVA_UTIL_LOGGING_COMPONENTID_TYPE); + sourceComponentId.setComponentType(ParserConstants.JAVA_UTIL_LOGGING_COMPONENT_TYPE); + sourceComponentId.setExecutionEnvironment(ParserConstants.JAVA_UTIL_LOGGING_EXEC_ENV); + sourceComponentId.setSubComponent(ParserConstants.UNKNOWN); + sourceComponentId.setLocation(ParserConstants.LOCALHOST_ID); + sourceComponentId.setLocationType(ParserConstants.LOCALHOST_ID_FORMAT); + return sourceComponentId; + } + + private void push(String key) + { + stack.push(key); + } + + private String pop() + { + clearBuffer(charactersBuffer); + return (String)stack.pop(); + } + + private String stackItems() + { + Iterator ite = stack.iterator(); + String result = ""; + boolean isStart = true; + while(ite.hasNext()) + { + if(isStart) + { + result = (String)ite.next(); + if(result.equalsIgnoreCase(ParserConstants.JAVA_UTIL_LOGGING_STR_LOG)) + { + result = ""; + continue; + } + isStart = false; + } + else + { + result = result + "." + (String)ite.next(); + } + } + return result; + } + + /** + * Function used to clear the string buffer + * @param stringBuffer + * @return empty stringBuffer + */ + private StringBuffer clearBuffer(StringBuffer stringBuffer) + { + try + { + if (stringBuffer == null) + return new StringBuffer(); + else + { + stringBuffer.setLength(0); + return stringBuffer; + } + } catch (Exception e) + { + return new StringBuffer(); + } + } +} Index: src/org/eclipse/hyades/logging/parsers/JavaUtilLogging.java =================================================================== RCS file: src/org/eclipse/hyades/logging/parsers/JavaUtilLogging.java diff -N src/org/eclipse/hyades/logging/parsers/JavaUtilLogging.java --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ src/org/eclipse/hyades/logging/parsers/JavaUtilLogging.java 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,162 @@ +/* + * Licensed Material - Property of IBM + * + * (C) Copyright IBM Corp. 2003, 2005 All Rights Reserved. + * US Government Users Restricted Rights - Use, duplication or disclosure + * restricted by GSA ADP Schedule Contract with IBM Corp. + */ +package org.eclipse.hyades.logging.parsers; + +import java.util.Hashtable; +import org.eclipse.hyades.logging.events.cbe.CommonBaseEvent; + + +public class JavaUtilLogging extends MonitoringParser +{ + /** + * SAX Parser to parse the Java Logging records. + */ + private JavaLoggingSAXHandler saxParser = null; + + /** + * Current line read from the log file being parsed + */ + private String currentLine = null; + + public void setConfiguration(Hashtable table) throws LogParserException + { + super.setConfiguration(table); + saxParser = new JavaLoggingSAXHandler(eventFactory); + } + + /** + * This function is called to initiate the parsing of a Java Logging XML log. + * Log records are parsed and returned as CommonBaseEvent object array. + * + * @exception LogParserException thrown if an exception is encountered during parsing + */ + public CommonBaseEvent[] parseNext() throws LogParserException + { + // counter for the number of CBE event converted + arrayIndex = 0; + String currentRecord = null; + + try + { + // loop until end-of-file that will retrieve log records + while((currentRecord = readCompleteXMLRecord(ParserConstants.JAVA_UTIL_LOGGING_STR_RECORD))!= null) + { + //call the sax parser to parse the records. + saxParser.parse(currentRecord); + if(saxParser.size() > 0) + { + messages[arrayIndex] = saxParser.getCommonBaseEvents()[0]; + arrayIndex++; + recordCount++; + } + + if(arrayIndex >= MessageArraySize) + { + break; + } + } + } + catch (Exception exception) + { + throw new LogParserException(ParserUtilities.getResourceString("JAVA_UTIL_LOGGIN_GENERAL_EXCEPTION_MESSAGE_ERROR_")); + } + + if(arrayIndex == 0) + { + setEndOfFile() ; + return null; + } + else + { + // clear the array that were not filled by the above loop. + for (int index = arrayIndex; index < MessageArraySize; index++) + { + messages[index] = null; + } + } + return messages; + } + + /* + * Reads a new line or returns an already read line. + * @exception LogParserException thrown if an exception is encountered during reading the log + */ + private String readLogline() throws LogParserException + { + //read a line only if an existing line isnt already there for processing + return (currentLine!=null && !currentLine.trim().equals(""))? currentLine: readALine(); + } + + /* + * This method can retrieve a complete XML record from the log. + * @exception LogParserException thrown if an exception is encountered during reading the log + */ + + private String readCompleteXMLRecord(String tag) throws LogParserException + { + int recordStartIndex = -1; + int recordEndIndex = -1; + String logRecord = null; + + String startTagClosed = "<" + tag + ">"; + String startTagOpen = "<" + tag + " "; + String endTag = ""; + + while((currentLine = readLogline())!= null) + { + if(recordStartIndex == -1) + { + if((recordStartIndex = currentLine.indexOf(startTagClosed)) >= 0 || (recordStartIndex = currentLine.indexOf(startTagOpen)) >= 0) + { + logRecord = currentLine.substring(recordStartIndex); + if((recordEndIndex = logRecord.indexOf(endTag)) > -1) + { + recordEndIndex = recordEndIndex + endTag.length(); + currentLine = logRecord.substring(recordEndIndex); + logRecord = logRecord.substring(0, recordEndIndex); + return logRecord; + } + } + currentLine = null; + } + else + { + if((recordEndIndex = currentLine.indexOf(endTag)) >= 0) + { + recordEndIndex = recordEndIndex + endTag.length(); + logRecord += currentLine.substring(0, recordEndIndex); + currentLine = currentLine.substring(recordEndIndex); + return logRecord; + } + else + { + logRecord += currentLine; + } + currentLine = null; + } + } + + return currentLine; + } + + /** + * This function returns the parser name + */ + public String getName() + { + return ParserConstants.JAVA_UTIL_LOGGING_STR_PRODUCT_NAME; + } + + /** + * This function returns the version of the Java supported by the parser + */ + public String getVersion() + { + return ParserConstants.JAVA_UTIL_LOGGING_STR_VERSION; + } +}