Re: identifying server log file when runningdistributed

Hi John, I can give you some TOOL code which will get the process
id, but I do have to stray outside of Framework :-). The following
code uses classes from the SystemMonitor project which was
introduced in release 2 of Forte (this code won't work on R1):
partAgent : SystemAgent;
pidInst : ConfigValueInst;
pid : TextData;
partAgent = SystemAgent(task.Part.Agent);
pidInst = ConfigValueInst(partAgent.FindInstrument('ProcessId');
pid = TextData(pidInst.GetData);
The result is that the variable pid contains the process id in string form.
This could be converted to numeric form if needed.
If what you're really after is the partition's log file name, then the following
code will do the trick (it takes into account the differences in how the log
files are named for interpreted vs. compiled partitions):
partAgent : SystemAgent;
logFileInst : ConfigValueInst;
logFileName : TextData;
-- Get our agent and try to get the log file inst
partAgent = SystemAgent(task.Part.Agent);
logFileInst = ConfigValueInst(partAgent.FindInstrument('LogFile');
-- Interpreted partition don't have their own log file, so check
if (logFileInst = NIL) then
pidInst : ConfigValueInst;
pid : TextData;
-- We must be an interpreted partition get our pid
pidInst = ConfigValueInst(partAgent.FindInstrument('ProcessId');
pid = TextData(pidInst.GetData);
-- Build log file name
logFileName = 'forte_ex_';
logFileName.Concat(pid);
else
-- Get the name of the log file from the instrument
logFileName = TextData(logFileInst.GetData);
end;
The available agents and their instruments and commands are documented
in the manual "SystemMonitor Project". I'm at home now, so I don't have
the page numbers. Some additional agents (which were added after this
manual went to press) can be found in Tech Note #10475. Also, econsole
and escript can be handy since any instrument you can see in these tools
can be accessed from TOOL code. Hope this is of some use.
Sean
At 05:24 PM 7/30/96 -0700, John L. Jamison wrote:
>
I'd like to solicit some ideas from you folks. As many of you are probably
aware, when running in distributed mode, log output for server partitions is
written out to log files on the server partition. However it is sometimes a
trick trying to identify the process which is running your individual
partitions, and
thus knowing which log file to read.
At one client, we added a 3gl call-out to obtain the process id and return it
to the client. However this is not a good option at a new client which uses
Sequent (3gl wrappering difficult in statically linked environments such as
sequent). I am also aware that Econsole allows you to browse active
partitions and display log files, but you still have to know which active
partitions to watch.
I have not yet seen a way to programmatically obtain the process ID for a
partition within TOOL and using FrameWork classes.
What kinds of strategies are folks employing out there?
Thanks in advance,
-John
John Jamison
Sage Solutions, Inc.
353 Sacramento Street, Suite 1360
San Francisco, CA 94111
415 392 7243 x 508
[email protected]

Hi John,
I think that Sean Fits answered your question about TOOL code to get the PID
number. I just want to complement on the loging strategy.
There is one log file for every active partition of an application. I think
it is useful in some cases that a distributed application gets a centralized
log file to trace the exact sequential flow of processing among all the
partitions. This is useful during the initial debuging and tuning. In fact
something similar to the UNIX syslog file.
For doing so it is easy to implement a custom central log Mgr in one
partition and to have all partitions use it when needed (it doesn't prevent
to continue using the standard LogMgr in addition). This central LogMgr
automatically adds the date&time plus the node name, partition name, ... to
the log messages it receives.
The flags which apply are those of the partition where the central Log Mgr is.
Because of potential concurency requests from the several partitions
accessing the central Log Mgr, it is not possible to support the "Put" and
PutHex" methods. Only complete lines can be logged (Putline and PutHexLine).
Attached is the TOOL code of my TraceService plan that implements it.
Remark : the "Phr" in the names relate to the name of the application we
have here under development.
To use the central Log Mgr, a partition must create an object of class
PartitionLog, and then log messages must be sent to it the way you send them
to the standard LogMgr; it will manage to send them to the central Log Mgr.
At 17:24 30/07/96 -0700, John Jamison wrote:
>
I'd like to solicit some ideas from you folks. As many of you are probably
aware, when running in distributed mode, log output for server partitions is
written out to log files on the server partition. However it is sometimes a
trick trying to identify the process which is running your individual
partitions, and
thus knowing which log file to read.
At one client, we added a 3gl call-out to obtain the process id and return it
to the client. However this is not a good option at a new client which uses
Sequent (3gl wrappering difficult in statically linked environments such as
sequent). I am also aware that Econsole allows you to browse active
partitions and display log files, but you still have to know which active
partitions to watch.
I have not yet seen a way to programmatically obtain the process ID for a
partition within TOOL and using FrameWork classes.
What kinds of strategies are folks employing out there?

Similar Messages

  • Getting log file when starting J2EE 1.4 Application Server

    I get a log file when starting up the Application Server. I am just a beginner.
    Is there anyone who could help me in setting up?
    Thanks,
    AboliRanade

    What do you mean by you get a log file when starting up the AppServer? There is always a log file present. There should not be a new log file created every time you start the server. Look under <install directory>/domains/domain1/logs for the server log file.

  • 1013108 Set Currency Database [%s] failed: see server log file

    Hello all,
    we are faced to a problem when runing a daily export scripts, the script run in the following error in the application log:
    "The tagged TIME member [Q4.08] does not exist in Currency Database [CUREISRI]"
    "Set Currency Database [CUREISRI] failed: see server log file"
    in the server log we cann see the following messages:
    Set Currency Database [CUREISRI] failed: see server log file
    Cannot load application EIS_RI with error number [1013108] - see server log file
    Network error [32]: Cannot Send Data
    - This version of Essbase (65400)
    i'm newbie to essbase and i don't found any info about the above error neither in the Internet nor in the oracle essbase documentation.
    thanks in advance for your help.
    Best Regards
    Mohammed, Kaibouss
    mailto:[email protected]

    So.... I've never used the Currency stuff before... but -- should the Q4.08 member exist in that database? As far as I can see that seems to be crux of the issue.

  • How to Open Or read SQL Server log file .ldf

    Hi all,
    How to Open Or read SQL Server log file .ldf
    When ever we create database from sql server, it's create two file. (1) .mdf (2) .ldf.
    I want to see what's available inside the .ldf file.
    Thanks,
    Ashok

    I am not too sure but may be the below two undocumented commands might yield the desired result.
    DBCC Log
    Fn_dblog function
    Refer these links for more info,
    http://www.mssqlcity.com/Articles/Undoc/SQL2000UndocDBCC.htm
    http://blogs.sqlserver.org.au/blogs/greg_linwood/archive/2004/11/27/37.aspx
    http://searchsqlserver.techtarget.com/tip/0,289483,sid87_gci1173464,00.html
    Some 3rd party tools like Log Explorer can do the job for you.
    http://www.lumigent.com/products/le_sql.html
    - Deepak

  • How to have a live feed from application server log file (realtime viewr )

    how to have a live feed from application server log file (realtime viewr for apps log files)
    hi , thank you for reading my post.
    is there any way to have a live feed of Application server log ?
    for example is there any application that can watch the log file and show the changes as new log items come in ?
    can some one with more experience help ?

    Your question would be more suited to the Developer Forums
    http://devforums.apple.com
    but anyway...
    My goal is to develop a web application that is able to run on iPhone too, to capture the audio and video content from its camera and mic.
    Web Apps running in Safari don't have access to the camera or mic hardware.
    Or I should built a native application distributed through Apple store?
    That is your only option, although such a system already exists:
    http://itunes.apple.com/us/app/ustream-live-broadcaster/id319362690?mt=8

  • WebLogic 10.3.2.0 hanging at startup after "The server log file is opened."

    Hi,
    A WebLogic 10.3.2.0 server is hanging at startup. There are no error messages. The last command in the startup window is:
    "The server log file <log file dest> is opened. All server side log events will be written to this file."
    I think the next line should be:
    "Security initializing using security realm realm."
    Any ideas on what could be the issue? For instance what resources should be accessed at that point of time? There is sufficient space left on the (virtual machine) disk. The VM configured with 8GB memory. Could it be performance related still?
    Following is written to the log file:
    ####<12.aug.2010 kl 09.47 CEST> <Info> <WebLogicServer> <oim> <> <Main Thread> <> <> <> <1281599254656> <BEA-000214> <WebLogic Server "AdminServer" version:
    WebLogic Server 10.3.2.0 Tue Oct 20 12:16:15 PDT 2009 1267925 Copyright (c) 1995, 2009, Oracle and/or its affiliates. All rights reserved.> ####<12.aug.2010 kl 09.47 CEST> <Notice> <Log Management> <oim> <> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1281599255312> <BEA-170019> <The server log file ....logs\AdminServer.log is opened. All server side log events will be written to this file.> ####<12.aug.2010 kl 09.47 CEST> <Info> <Log Management> <oim> <> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1281599255390> <BEA-170023> <The Server Logging is initialized with Java Logging API implementation.> ####<12.aug.2010 kl 09.47 CEST> <Info> <Diagnostics> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599255671> <BEA-320001> <The ServerDebug service initialized successfully.> ####<12.aug.2010 kl 09.47 CEST> <Info> <Store> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599256515> <BEA-280050> <Persistent store "WLS_DIAGNOSTICS" opened: directory="....s\domains\oim\servers\AdminServer\data\store\diagnostics" writePolicy="Disabled" blockSize=512 directIO=false driver="wlfileio2"> ####<12.aug.2010 kl 09.47 CEST> <Info> <Server> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599257140> <BEA-002622> <The protocol "t3" is now configured.> ####<12.aug.2010 kl 09.47 CEST> <Info> <Server> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599257140> <BEA-002622> <The protocol "t3s" is now configured.> ####<12.aug.2010 kl 09.47 CEST> <Info> <Server> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599257140> <BEA-002622> <The protocol "http" is now configured.> ####<12.aug.2010 kl 09.47 CEST> <Info> <Server> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599257140> <BEA-002622> <The protocol "https" is now configured.> ####<12.aug.2010 kl 09.47 CEST> <Info> <Server> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599257140> <BEA-002622> <The protocol "iiop" is now configured.> ####<12.aug.2010 kl 09.47 CEST> <Info> <Server> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599257156> <BEA-002622> <The protocol "iiops" is now configured.> ####<12.aug.2010 kl 09.47 CEST> <Info> <Server> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599257156> <BEA-002622> <The protocol "ldap" is now configured.> ####<12.aug.2010 kl 09.47 CEST> <Info> <Server> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599257156> <BEA-002622> <The protocol "ldaps" is now configured.> ####<12.aug.2010 kl 09.47 CEST> <Info> <Server> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599257187> <BEA-002622> <The protocol "cluster" is now configured.> ####<12.aug.2010 kl 09.47 CEST> <Info> <Server> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599257187> <BEA-002622> <The protocol "clusters" is now configured.> ####<12.aug.2010 kl 09.47 CEST> <Info> <Server> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599257218> <BEA-002622> <The protocol "snmp" is now configured.> ####<12.aug.2010 kl 09.47 CEST> <Info> <Server> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599257218> <BEA-002622> <The protocol "admin" is now configured.> ####<12.aug.2010 kl 09.47 CEST> <Info> <Server> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599257218> <BEA-002624> <The administration protocol is "t3s" and is now configured.> ####<12.aug.2010 kl 09.47 CEST> <Info> <RJVM> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599257468> <BEA-000570> <Network Configuration for Channel "AdminServer"
    Listen Address          :7001
    Public Address          N/A
    Http Enabled          true
    Tunneling Enabled     false
    Outbound Enabled     false
    Admin Traffic Enabled     true>
    ####<12.aug.2010 kl 09.47 CEST> <Info> <Server> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599257687> <BEA-002609> <Channel Service initialized.> ####<12.aug.2010 kl 09.47 CEST> <Info> <Socket> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599258000> <BEA-000406> <NTSocketMuxer was built on Jan 13 2005 17:47:03
    ####<12.aug.2010 kl 09.47 CEST> <Info> <Socket> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599258078> <BEA-000436> <Allocating 3 reader threads.> ####<12.aug.2010 kl 09.47 CEST> <Info> <Socket> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599258078> <BEA-000446> <Native IO Enabled.> ####<12.aug.2010 kl 09.47 CEST> <Info> <IIOP> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599259500> <BEA-002014> <IIOP subsystem enabled.>
    Thanks!!

    tried both of these, still having same error as below:
    <Sep 8, 2010 1:32:37 PM IST> <Critical> <Security> <BEA-090402> <Authentication denied: Boot identity not valid; The user name and/or password from the boot identity file (boot.properties) is not valid. The boot identity may have been changed since the boot identity file was created. Please edit and update the boot identity file with the proper values of username and password. The first time the updated boot identity file is used to start the server, these new values are encrypted.>
    <Sep 8, 2010 1:32:37 PM IST> <Critical> <WebLogicServer> <BEA-000386> <Server subsystem failed. Reason: weblogic.security.SecurityInitializationException: Authentication denied: Boot identity not valid; The user name and/or password from the boot identity file (boot.properties) is not valid. The boot identity may have been changed since the boot identity file was created. Please edit and update the boot identity file with the proper values of username and password. The first time the updated boot identity file is used to start the server, these new values are encrypted.
    weblogic.security.SecurityInitializationException: Authentication denied: Boot identity not valid; The user name and/or password from the boot identity file (boot.properties) is not valid. The boot identity may have been changed since the boot identity file was created. Please edit and update the boot identity file with the proper values of username and password. The first time the updated boot identity file is used to start the server, these new values are encrypted.
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.doBootAuthorization(CommonSecurityServiceManagerDelegateImpl.java:959)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1050)
    at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:875)
    at weblogic.security.SecurityService.start(SecurityService.java:141)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    Truncated. see log file for complete stacktrace
    Caused By: javax.security.auth.login.FailedLoginException: [Security:090304]Authentication Failed: User weblogic2 javax.security.auth.login.FailedLoginException: [Security:090302]Authentication Failed: User weblogic2 denied
    at weblogic.security.providers.authentication.LDAPAtnLoginModuleImpl.login(LDAPAtnLoginModuleImpl.java:250)
    at com.bea.common.security.internal.service.LoginModuleWrapper$1.run(LoginModuleWrapper.java:110)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.bea.common.security.internal.service.LoginModuleWrapper.login(LoginModuleWrapper.java:106)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    Truncated. see log file for complete stacktrace
    >
    <Sep 8, 2010 1:32:37 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FAILED>
    <Sep 8, 2010 1:32:37 PM IST> <Error> <WebLogicServer> <BEA-000383> <A critical service failed. The server will shut itself down>
    <Sep 8, 2010 1:32:37 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FORCE_SHUTTING_DOWN>
    Pls help me out ASAP...

  • How do I turn off |INFO| entries in my server.log files?

    Sun Java System Application Server 8.2
    How do I turn off |INFO| entries in my server.log files? Is this a setting in the admin console that I am over looking?
    Thanks,
    --Todd
    [#|2006-06-01T09:48:43.776-0500|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.admin|_ThreadID=11;|ADM1041:Sent the event to instance:[ModuleDeployEvent -- undeploy web/transactionbrowser]|#]
    [#|2006-06-01T09:48:44.855-0500|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.admin|_ThreadID=11;|ADM1042:Status of dynamic reconfiguration event processing:[success]|#]
    [#|2006-06-01T09:48:44.949-0500|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.admin|_ThreadID=12;|ADM1041:Sent the event to instance:[ApplicationDeployEvent -- reference-removed transactionbrowser]|#]
    [#|2006-06-01T09:48:45.011-0500|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.admin|_ThreadID=12;|ADM1042:Status of dynamic reconfiguration event processing:[success]|#]
    [#|2006-06-01T09:48:45.121-0500|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.deployment|_ThreadID=13;|Total Deployment Time: 16 msec, Total EJB Compiler Module Time: 0 msec, Portion spent EJB Compiling: 0%|#]
    [#|2006-06-01T09:48:46.403-0500|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.deployment|_ThreadID=14;|DPL5109: EJBC - START of EJBC for [transactionbrowser]|#]
    [#|2006-06-01T09:48:46.403-0500|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.deployment|_ThreadID=14;|Processing beans ...|#]
    [#|2006-06-01T09:48:46.418-0500|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.deployment|_ThreadID=14;|DPL5110: EJBC - END of EJBC for [transactionbrowser]|#]
    [#|2006-06-01T09:48:46.637-0500|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.deployment|_ThreadID=14;|Total Deployment Time: 813 msec, Total EJB Compiler Module Time: 15 msec, Portion spent EJB Compiling: 1%
    Breakdown of EJBC Module Time: Total Time for EJBC: 15 msec, CMP Generation: 0 msec (0%), Java Compilation: 0 msec (0%), RMI Compilation: 0 msec (0%), JAX-RPC Generation: 0 msec (0%),
    |#]
    [#|2006-06-01T09:48:46.731-0500|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.deployment|_ThreadID=14;|deployed with moduleid = transactionbrowser|#]
    [#|2006-06-01T09:48:46.950-0500|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.admin|_ThreadID=13;|ADM1041:Sent the event to instance:[ApplicationDeployEvent -- reference-added transactionbrowser]|#]
    [#|2006-06-01T09:48:46.997-0500|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.admin|_ThreadID=13;|ADM1042:Status of dynamic reconfiguration event processing:[success]|#]
    [#|2006-06-01T09:48:47.028-0500|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.admin|_ThreadID=15;|ADM1041:Sent the event to instance:[ModuleDeployEvent -- deploy web/transactionbrowser]|#]
    [#|2006-06-01T09:48:47.044-0500|INFO|sun-appserver-pe8.2|javax.enterprise.system.container.web|_ThreadID=15;|WEB0100: Loading web module [transactionbrowser] in virtual server [server] at [transactionbrowser]|#]
    [#|2006-06-01T09:48:48.733-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ConverterRule]{faces-config/converter} Merge(null,java.math.BigDecimal)|#]
    [#|2006-06-01T09:48:48.748-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ConverterRule]{faces-config/converter} Merge(null,java.math.BigInteger)|#]
    [#|2006-06-01T09:48:48.889-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlCommandButton)|#]
    [#|2006-06-01T09:48:48.889-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlCommandLink)|#]
    [#|2006-06-01T09:48:48.905-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlDataTable)|#]
    [#|2006-06-01T09:48:48.905-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlInputHidden)|#]
    [#|2006-06-01T09:48:48.905-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlInputSecret)|#]
    [#|2006-06-01T09:48:48.905-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlInputText)|#]
    [#|2006-06-01T09:48:48.905-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlInputTextHelp)|#]
    [#|2006-06-01T09:48:48.905-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlInputTextarea)|#]
    [#|2006-06-01T09:48:48.905-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlGraphicImage)|#]
    [#|2006-06-01T09:48:48.920-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlMessage)|#]
    [#|2006-06-01T09:48:48.920-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlMessages)|#]
    [#|2006-06-01T09:48:48.920-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlOutputLabel)|#]
    [#|2006-06-01T09:48:48.920-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlOutputText)|#]
    [#|2006-06-01T09:48:48.920-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlPanelGrid)|#]
    [#|2006-06-01T09:48:48.920-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlPanelGroup)|#]
    [#|2006-06-01T09:48:48.936-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlSelectBooleanCheckbox)|#]
    [#|2006-06-01T09:48:48.936-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlSelectManyCheckbox)|#]
    [#|2006-06-01T09:48:48.936-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlSelectManyListbox)|#]
    [#|2006-06-01T09:48:48.936-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlSelectManyMenu)|#]
    [#|2006-06-01T09:48:48.936-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlSelectOneListbox)|#]
    [#|2006-06-01T09:48:48.936-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlSelectOneMenu)|#]
    [#|2006-06-01T09:48:48.936-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlSelectOneRadio)|#]
    [#|2006-06-01T09:48:48.952-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.AliasBean)|#]
    [#|2006-06-01T09:48:48.952-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.AliasBeansScope)|#]
    [#|2006-06-01T09:48:48.952-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.Buffer)|#]
    [#|2006-06-01T09:48:48.952-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.Document)|#]
    [#|2006-06-01T09:48:48.952-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.DocumentHead)|#]
    [#|2006-06-01T09:48:48.952-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.DocumentBody)|#]
    [#|2006-06-01T09:48:48.967-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.Div)|#]
    [#|2006-06-01T09:48:48.967-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlCheckbox)|#]
    [#|2006-06-01T09:48:48.967-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlColumn)|#]
    [#|2006-06-01T09:48:48.967-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlColumns)|#]
    [#|2006-06-01T09:48:48.967-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlCommandNavigation)|#]
    [#|2006-06-01T09:48:48.967-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlCommandNavigationItem)|#]
    [#|2006-06-01T09:48:48.967-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlCommandSortHeader)|#]
    [#|2006-06-01T09:48:48.983-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlHeaderLink)|#]
    [#|2006-06-01T09:48:48.983-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlInputCalendar)|#]
    [#|2006-06-01T09:48:48.999-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlInputDate)|#]
    [#|2006-06-01T09:48:48.999-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlInputFileUpload)|#]
    [#|2006-06-01T09:48:48.999-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlDataList)|#]
    [#|2006-06-01T09:48:48.999-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlDataScroller)|#]
    [#|2006-06-01T09:48:48.999-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlJsValueSet)|#]
    [#|2006-06-01T09:48:49.014-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlNewspaperTable)|#]
    [#|2006-06-01T09:48:49.014-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlCollapsiblePanel)|#]
    [#|2006-06-01T09:48:49.014-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlPanelLayout)|#]
    [#|2006-06-01T09:48:49.030-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlPanelNavigation)|#]
    [#|2006-06-01T09:48:49.030-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlPanelNavigationMenu)|#]
    [#|2006-06-01T09:48:49.030-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlPanelStack)|#]
    [#|2006-06-01T09:48:49.030-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlPanelTab)|#]
    [#|2006-06-01T09:48:49.030-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlPanelTabbedPane)|#]
    [#|2006-06-01T09:48:49.030-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlPopup)|#]
    [#|2006-06-01T09:48:49.045-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlRadio)|#]
    [#|2006-06-01T09:48:49.045-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlSwapImage)|#]
    [#|2006-06-01T09:48:49.045-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlTag)|#]
    [#|2006-06-01T09:48:49.045-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlTree)|#]
    [#|2006-06-01T09:48:49.045-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlTree2)|#]
    [#|2006-06-01T09:48:49.045-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlTreeCheckbox)|#]
    [#|2006-06-01T09:48:49.045-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlTreeColumn)|#]
    [#|2006-06-01T09:48:49.061-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlTreeImageCommandLink)|#]
    [#|2006-06-01T09:48:49.061-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.HtmlTreeNode)|#]
    [#|2006-06-01T09:48:49.061-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.InputHtml)|#]
    [#|2006-06-01T09:48:49.061-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.JSCookMenu)|#]
    [#|2006-06-01T09:48:49.061-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.JsValueChangeListener)|#]
    [#|2006-06-01T09:48:49.061-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.NavigationMenuItem)|#]
    [#|2006-06-01T09:48:49.077-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.SaveState)|#]
    [#|2006-06-01T09:48:49.077-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.SelectOneCountry)|#]
    [#|2006-06-01T09:48:49.077-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.SelectOneLanguage)|#]
    [#|2006-06-01T09:48:49.077-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ComponentRule]{faces-config/component} Merge(org.apache.myfaces.Stylesheet)|#]
    [#|2006-06-01T09:48:49.077-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ConverterRule]{faces-config/converter} Merge(null,java.math.BigDecimal)|#]
    [#|2006-06-01T09:48:49.077-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ConverterRule]{faces-config/converter} Merge(null,java.math.BigInteger)|#]
    [#|2006-06-01T09:48:49.092-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ConverterRule]{faces-config/converter} Merge(null,java.util.Date)|#]
    [#|2006-06-01T09:48:49.092-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ConverterRule]{faces-config/converter} Merge(null,[Ljava.lang.String;)|#]
    [#|2006-06-01T09:48:49.092-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ConverterRule]{faces-config/converter} Merge(null,org.apache.myfaces.custom.fileupload.UploadedFile)|#]
    [#|2006-06-01T09:48:49.233-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ValidatorRule]{faces-config/validator} Merge(org.apache.myfaces.validator.CreditCard)|#]
    [#|2006-06-01T09:48:49.233-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ValidatorRule]{faces-config/validator} Merge(org.apache.myfaces.validator.Email)|#]
    [#|2006-06-01T09:48:49.233-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ValidatorRule]{faces-config/validator} Merge(org.apache.myfaces.validator.Equal)|#]
    [#|2006-06-01T09:48:49.233-0500|WARNING|sun-appserver-pe8.2|org.apache.commons.digester.Digester|_ThreadID=15;|[ValidatorRule]{faces-config/validator} Merge(org.apache.myfaces.validator.RegExpr)|#]
    [#|2006-06-01T09:48:49.515-0500|INFO|sun-appserver-pe8.2|org.apache.myfaces.config.FacesConfigurator|_ThreadID=15;|Reading standard config org/apache/myfaces/resource/standard-faces-config.xml|#]
    [#|2006-06-01T09:48:49.702-0500|INFO|sun-appserver-pe8.2|org.apache.myfaces.config.FacesConfigurator|_ThreadID=15;|Reading config jar:file:/C:/AppServer/domains/domain1/lib/tomahawk-1.1.2.jar!/META-INF/faces-config.xml|#]
    [#|2006-06-01T09:48:49.968-0500|INFO|sun-appserver-pe8.2|org.apache.myfaces.config.FacesConfigurator|_ThreadID=15;|Reading config jar:file:/C:/javaworkspace/petroadmin/transactionbrowser/build/web/WEB-INF/lib/tomahawk-1.1.2.jar!/META-INF/faces-config.xml|#]
    [#|2006-06-01T09:48:50.343-0500|INFO|sun-appserver-pe8.2|org.apache.myfaces.config.FacesConfigurator|_ThreadID=15;|Reading config /WEB-INF/faces-config.xml|#]
    [#|2006-06-01T09:48:50.359-0500|INFO|sun-appserver-pe8.2|org.apache.myfaces.renderkit.html.HtmlRenderKitImpl|_ThreadID=15;|Overwriting renderer with family = javax.faces.Command rendererType = javax.faces.Button renderer class = org.apache.myfaces.renderkit.html.jsf.DummyFormHtmlButtonRenderer|#]
    [#|2006-06-01T09:48:50.359-0500|INFO|sun-appserver-pe8.2|org.apache.myfaces.renderkit.html.HtmlRenderKitImpl|_ThreadID=15;|Overwriting renderer with family = javax.faces.Command rendererType = javax.faces.Link renderer class = org.apache.myfaces.renderkit.html.jsf.DummyFormHtmlLinkRenderer|#]
    [#|2006-06-01T09:48:50.359-0500|INFO|sun-appserver-pe8.2|org.apache.myfaces.renderkit.html.HtmlRenderKitImpl|_ThreadID=15;|Overwriting renderer with family = javax.faces.Command rendererType = javax.faces.Button renderer class = org.apache.myfaces.renderkit.html.jsf.DummyFormHtmlButtonRenderer|#]
    [#|2006-06-01T09:48:50.359-0500|INFO|sun-appserver-pe8.2|org.apache.myfaces.renderkit.html.HtmlRenderKitImpl|_ThreadID=15;|Overwriting renderer with family = javax.faces.Command rendererType = javax.faces.Link renderer class = org.apache.myfaces.renderkit.html.jsf.DummyFormHtmlLinkRenderer|#]
    [#|2006-06-01T09:48:50.359-0500|INFO|sun-appserver-pe8.2|org.apache.myfaces.renderkit.html.HtmlRenderKitImpl|_ThreadID=15;|Overwriting renderer with family = javax.faces.Command rendererType = org.apache.myfaces.Button renderer class = org.apache.myfaces.renderkit.html.ext.HtmlButtonRenderer|#]
    [#|2006-06-01T09:48:50.359-0500|INFO|sun-appserver-pe8.2|org.apache.myfaces.renderkit.html.HtmlRenderKitImpl|_ThreadID=15;|Overwriting renderer with family = javax.faces.Command rendererType = org.apache.myfaces.Link renderer class = org.apache.myfaces.renderkit.html.ext.HtmlLinkRenderer|#]
    [#|2006-06-01T09:48:50.359-0500|INFO|sun-appserver-pe8.2|org.apache.myfaces.renderkit.html.HtmlRenderKitImpl|_ThreadID=15;|Overwriting renderer with family = javax.faces.Data rendererType = org.apache.myfaces.Table renderer class = org.apache.myfaces.renderkit.html.ext.HtmlTableRenderer|#]
    [#|2006-06-01T09:48:50.375-0500|INFO|sun-appserver-pe8.2|org.apache.myfaces.renderkit.html.HtmlRenderKitImpl|_ThreadID=15;|Overwriting renderer with family = javax.faces.Panel rendererType = org.apache.myfaces.Grid renderer class = org.apache.myfaces.renderkit.html.ext.HtmlGridRenderer|#]
    [#|2006-06-01T09:48:50.375-0500|INFO|sun-appserver-pe8.2|org.apache.myfaces.renderkit.html.HtmlRenderKitImpl|_ThreadID=15;|Overwriting renderer with family = javax.faces.Panel rendererType = org.apache.myfaces.Group renderer class = org.apache.myfaces.renderkit.html.ext.HtmlGroupRenderer|#]
    [#|2006-06-01T09:48:50.375-0500|INFO|sun-appserver-pe8.2|org.apache.myfaces.renderkit.html.HtmlRenderKitImpl|_ThreadID=15;|Overwriting renderer with family = javax.faces.Input rendererType = org.apache.myfaces.Secret renderer class = org.apache.myfaces.renderkit.html.ext.HtmlSecretRenderer|#]
    [#|2006-06-01T09:48:50.375-0500|INFO|sun-appserver-pe8.2|org.apache.myfaces.renderkit.html.HtmlRenderKitImpl|_ThreadID=15;|Overwriting renderer with family = javax.faces.Graphic rendererType = org.apache.myfaces.Image renderer class = org.apache.myfaces.renderkit.html.ext.HtmlImageRenderer|#]
    [#|2006-06-01T09:48:50.375-0500|INFO|sun-appserver-pe8.2|org.apache.myfaces.renderkit.html.HtmlRenderKitImpl|_ThreadID=15;|Overwriting renderer with family = javax.faces.Input rendererType = org.apache.myfaces.Text renderer class = org.apache.myfaces.renderkit.html.ext.HtmlTextRenderer|#]
    [#|2006-06-01T09:48:50.375-0500|INFO|sun-appserver-pe8.2|org.apache.myfaces.renderkit.html.HtmlRenderKitImpl|_ThreadID=15;|Overwriting renderer with family = javax.faces.Input rendererType = org.apache.myfaces.TextHelp renderer class = org.apache.myfaces.custom.inputTextHelp.HtmlTextHelpRenderer|#]
    [#|2006-06-01T09:48:50.375-0500|INFO|sun-appserver-pe8.2|org.apache.myfaces.renderkit.html.HtmlRenderKitImpl|_ThreadID=15;|Overwriting renderer with family = javax.faces.Input rendererType = org.apache.myfaces.Textarea renderer class = org.apache.myfaces.renderkit.html.ext.HtmlTextareaRenderer|#]
    [#|2006-06-01T09:48:50.375-0500|INFO|sun-appserver-pe8.2|org.apache.myfaces.renderkit.html.HtmlRenderKitImpl|_ThreadID=15;|Overwriting renderer with family = javax.faces.Message rendererType = org.apache.myfaces.Message renderer class = org.apache.myfaces.renderkit.html.ext.HtmlMessageRenderer|#]
    [#|2006-06-01T09:48:50.375-0500|INFO|sun-appserver-pe8.2|org.apache.myfaces.renderkit.html.HtmlRenderKitImpl|_ThreadID=15;|Overwriting renderer with family = javax.faces.Messages rendererType = org.apache.myfaces.Messages renderer class = org.apache.myfaces.renderkit.html.ext.HtmlMessagesRenderer|#]
    [#|2006-06-01T09:48:50.375-0500|INFO|sun-appserver-pe8.2|org.apache.myfaces.renderkit.html.HtmlRenderKitImpl|_ThreadID=15;|Overwriting renderer with family = javax.faces.Output rendererType = org.apache.myfaces.Text renderer class = org.apache.myfaces.renderkit.html.ext.HtmlTextRenderer|#]
    [#|2006-06-01T09:48:50.375-0500|INFO|sun-appserver-pe8.2|org.apache.myfaces.renderkit.html.HtmlRenderKitImpl|_ThreadID=15;|Overwriting renderer with family = javax.faces.SelectBoolean rendererType = org.apache.myfaces.Checkbox renderer class = org.apache.myfaces.renderkit.html.ext.HtmlCheckboxRenderer|#]
    [#|2006-06-01T09:48:50.375-0500|INFO|sun-appserver-pe8.2|org.apache.myfaces.renderkit.html.HtmlRenderKitImpl|_ThreadID=15;|Overwriting renderer with family = javax.faces.SelectMany rendererType = org.apache.myfaces.Checkbox renderer class = org.apache.myfaces.renderkit.html.ext.HtmlCheckboxRenderer|#]
    [#|2006-06-01T09:48:50.375-0500|INFO|sun-appserver-pe8.2|org.apache.myfaces.renderkit.html.HtmlRenderKitImpl|_ThreadID=15;|Overwriting renderer with family = javax.faces.SelectOne rendererType = org.apache.myfaces.Menu renderer class = org.apache.myfaces.renderkit.html.ext.HtmlMenuRenderer|#]
    [#|2006-06-01T09:48:50.375-0500|INFO|sun-appserver-pe8.2|org.apache.myfaces.renderkit.html.HtmlRenderKitImpl|_ThreadID=15;|Overwriting renderer with family = javax.faces.SelectMany rendererType = org.apache.myfaces.Menu renderer class = org.apache.myfaces.renderkit.html.ext.HtmlMenuRenderer|#]
    [#|2006-06-01T09:48:50.375-0500|INFO|sun-appserver-pe8.2|org.apache.myfaces.renderkit.html.HtmlRenderKitImpl|_ThreadID=15;|Overwriting renderer with family = javax.faces.SelectOne rendererType = org.apache.myfaces.Listbox renderer class = org.apache.myfaces.renderkit.html.ext.HtmlListboxRenderer|#]
    [#|2006-06-01T09:48:50.375-0500|INFO|sun-appserver-pe8.2|org.apache.myfaces.renderkit.html.HtmlRenderKitImpl|_ThreadID=15;|Overwriting renderer with family = javax.faces.SelectMany rendererType = org.apache.myfaces.Listbox renderer class = org.apache.myfaces.renderkit.html.ext.HtmlListboxRenderer|#]
    [#|2006-06-01T09:48:50.375-0500|INFO|sun-appserver-pe8.2|org.apache.myfaces.renderkit.html.HtmlRenderKitImpl|_ThreadID=15;|Overwriting renderer with family = javax.faces.SelectOne rendererType = org.apache.myfaces.Radio renderer class = org.apache.myfaces.renderkit.html.ext.HtmlRadioRenderer|#]
    [#|2006-06-01T09:48:50.375-0500|INFO|sun-appserver-pe8.2|org.apache.myfaces.renderkit.html.HtmlRenderKitImpl|_ThreadID=15;|Overwriting renderer with family = javax.faces.Data rendererType = org.apache.myfaces.AliasBean renderer class = org.apache.myfaces.custom.aliasbean.AliasBeanRenderer|#]
    [#|2006-06-01T09:48:50.375-0500|INFO|sun-appserver-pe8.2|org.apache.myfaces.renderkit.html.HtmlRenderKitImpl|_ThreadID=15;|Overwriting renderer with family = javax.faces.Data rendererType = org.apache.myfaces.AliasBeansScope renderer class = org.apache.myfaces.custom.aliasbean.AliasBeansScopeRenderer|#]
    [#|2006-06-01T09:48:50.390-0500|INFO|sun-appserver-pe8.2|org.apache.myfaces.renderkit.html.HtmlRenderKitImpl|_ThreadID=15;|Overwriting renderer with family = javax.faces.Data rendererType = org.apache.myfaces.Buffer renderer class = org.apache.myfaces.custom.buffer.BufferRenderer|#]
    [#|2006-06-01T09:48:50.390-0500|INFO|sun-appserver-pe8.2|org.apache.myfaces.renderkit.html.HtmlRenderKitImpl|_ThreadID=15;|Overwriting renderer with family = javax.faces.Data rendererType = org.apache.myfaces.Document renderer class = org.apache.myfaces.custom.document.DocumentRenderer|#]
    [#|2006-06-01T09:48:50.390-0500|INFO|sun-appserver-pe8.2|org.apache.myfaces.renderkit.html.HtmlRenderKitImpl|_ThreadID=15;|Overwriting renderer with family = javax.faces.Data rendererType = org.apache.myfaces.DocumentHead renderer class = org.apache.myfaces.custom.document.DocumentHeadRenderer|#]
    [#|2006-06-01T09:48:50.390-0500|INFO|sun-appserver-pe8.2|org.apache.myfaces.renderkit.html.HtmlRenderKitImpl|_ThreadID=15;|Overwriting renderer with family = javax.faces.Data rendererType = org.apache.myfaces.DocumentBody renderer class = org.apache.myfaces.custom.document.DocumentBodyRenderer|#]
    [#|2006-06-01T09:48:50.390-0500|INFO|sun-appserver-pe8.2|org.apache.myfaces.renderkit.html.HtmlRenderKitImpl|_ThreadID=15;|Overwriting renderer with family = org.apache.myfaces.Checkbox rendererType = org.apache.myfaces.Checkbox renderer class = org.apache.myfaces.renderkit.html.ext.HtmlCheckboxRenderer|#]
    [#|2006-06-01T09:48:50.390-0500|INFO|sun-appserver-pe8.2|org.apache.myfaces.renderkit.html.HtmlRenderKitImpl|_ThreadID=15;|Overwriting renderer with family = javax.faces.Panel rendererType = org.apache.myfaces.DataScroller renderer class = org.apache.myfaces.custom.datascroller.HtmlDataScrollerRenderer|#]
    [#|2006-06-01T09:48:50.390-0500|INFO|sun-appserver-pe8.2|org.apache.myfaces.renderkit.html.HtmlRenderKitImpl|_ThreadID=15;|Overwriting renderer with family = javax.faces.Input rendererType = org.apache.myfaces.Calendar renderer class = org.apache.myfaces.custom.calendar.HtmlCalendarRenderer|#]
    [#|2006-06-01T09:48:50.390-0500|INFO|sun-appserver-pe8.2|org.apache.myfaces.renderkit.html.HtmlRenderKitImpl|_ThreadID=15;|Overwriting renderer with family = javax.faces.Input rendererType = org.apache.myfaces.Date renderer class = org.apache.myfaces.custom.date.HtmlDateRenderer|#]
    [#|2006-06-01T09:48:50.390-0500|INFO|sun-appserver-pe8.2|org.apache.myfaces.renderkit.html.HtmlRenderKitImpl|_ThreadID=15;|Overwriting renderer with family = javax.faces.Input rendererType = org.apache.myfaces.FileUpload renderer class = org.apache.myfaces.custom.fileupload.HtmlFileUploadRenderer|#]
    [#|2006-06-01T09:48:50.390-0500|INFO|sun-appserver-pe8.2|org.apache.myfaces.renderkit.html.HtmlRenderKitImpl|_ThreadID=15;|Overwriting renderer with family = javax.faces.Input rendererType = org.apache.myfaces.InputHtml renderer class = org.apache.myfaces.custom.inputHtml.InputHtmlRenderer|#]
    [#|2006-06-01T09:48:50.390-0500|INFO|sun-appserver-pe8.2|org.apache.myf                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           &

    This path is not available for
    Sun Java System Application Server Platform Edition
    9.0 (build b48)
    There is no server-config under Configurations. Do
    you know how to do this for this version of the app
    server?Right.
    There is only one "config" available for Platform Edition. So, can
    you try:
    - Click on Application Server in the left panel.
    - Right hand side, third tab is "Logging". Click there.
    - Second tab below is Log Levels. You can see various component
    (module) log levels there. The default is "INFO" for all.
    I tested this on 9.0 PE - b48.
    Hope this helps.
    Kedar

  • How to set server log file severity

    Will some one suggest how to set the severity for messages logged by server to server log file. The admin console consists of setting "Stdout Severity Threshold" which is applicable only to standard out. I need to restrict info messages to be logged in server log file.

    Which release of WebLogic Server are you using? In WebLogic 9.0 there is an attribute on the LogMBean called LogFileSeverity which could be configured to "Warning" so it will not allow Debug and Info level messages to be written to the server log file. In the 8.1 release you would need to do this programatically using a startup class, by getting a reference to the server Logger by invoking weblogic/logging/LoggingHelper.getServerLogger() and setting the appropriate weblogic/logging/WLLevel on the weblogic/logging/FilestreamHandler that writes to the server log file.
    Hope this helps
    Sandeep

  • Any ways to roll over to a different log file when the current log file big

    How to roll over a log file when it reaches maximum to a different log file?
    any ways of doing this??????

    More info in the new owners....
    http://www.oracle.com/technology/pub/articles/hunter_logging.html
    And more!!!!! here to build a configuration file with filehandler properly setted to an specified size
    http://www.linuxtopia.org/online_books/programming_books/thinking_in_java/TIJ317_021.htm

  • Any ideas creating app to read log file when updated?

    Afternoon all,
    I have been asked to write a java app which will read the contents of the server log file every time the log file is updated by the server. The app will be deployed onto WebSphere Application Server.
    Can anyone point me in the right direction as I have never written anything like this before and I don't know where to start. Any help will be much appreciated.
    Thanks in advance,
    A.

    alex@work wrote:
    I agree with most of what you've said but unfortunately I don't have a say in what the company wants. However, I am interested in the appender idea, perhaps they may go for that if I suggest it.I'd say it'll take you a day to read up about Log4J and how to write basic appenders, and another day to write your own appender for this problem. Compare that to the effort of writing something to poll a log file, re-read it constantly and update another file, operations which will get slower and slower as they go along. That's a fair amount more code than a single appender would be. There's how to sell it to your company.
    Can you give me a brief overview in how it works?Log4J uses objects called appenders, which take logging info - generated by your container - and do something with it. It ships with some appenders already in it, for writing to stdout, files, sockets and databases. You can also write your own appenders that do something more than these standard ones do. You write logging code in your application - in this case, your container already does this so you don't have to - and the configuration of Log4J decides what happens to these logging messages. That's what you're interested in. You could write an appender - a simple class - that takes raw logging messages in, and writes them out to file in whatever format you want
    Come to think of it, depending on how complex the required XML is, you may even be able to do this without writing any code at all. You can write formatting patterns in the Log4J config that existing file appenders will use to write your XML files
    A bit of an abstract explanation, I guess. Your best bet is to first ascertain that Log4J is indeed in use, and then read the documentation, which is surprisingly good for an Apache project :-)
    [http://logging.apache.org/log4j/1.2/index.html]

  • How to Properly Protect a Virtualized Exchange Server - Log File Discontinuity When Performing Child Partition Snapshot

    I'm having problems backing up a Hyper-V virtualized Exchange 2007 server with DPM 2012. The guest has one VHD for the OS, and two pass-through volumes, one for logs and one for the databases. I have three protection groups:
    System State - protects only the system state of the mail server, runs at 4AM every morning
    Exchange Databases - protects the Exchange stores, 15 minute syncs with an express full at 6:30PM every day
    VM - Protecting the server hosting the Exchange VM. Does an child partition snapshot backup of the Exchange server guest with an express full at 9:30PM every day
    The problem I'm experiencing is that every time the VM express full completes I start receiving errors on the Exchange Database synchronizations stating that a log file discontinuity was detected. I did some poking around in the logs on the Exchange server
    and sure enough, it looks like the child partition snapshot backup is causing Exchange to truncate the log files even though the logs and databases are on pass-through disks and aren't covered by the child partition snapshot.
    What is the correct way to back up an entire virtualized Exchange server, system state, databases, OS drive and all?

    I just created a new protection group. I added "Backup Using Child Partition Snapshot\MailServer", short-term protection using disk, and automatically create the replica over the network immediately. This new protection group contains only the child partition
    snapshot backup. No Exchange backups of any kind.
    The replica creation begins. Soon after, the following events show up in the Application log:
    =================================
    Log Name:      Application
    Source:        MSExchangeIS
    Date:          10/23/2012 10:41:53 AM
    Event ID:      9818
    Task Category: Exchange VSS Writer
    Level:         Information
    Keywords:      Classic
    User:          N/A
    Computer:      PLYMAIL.mcquay.com
    Description:
    Exchange VSS Writer (instance 7d26282d-5dec-4a73-bf1c-f55d5c1d1ac7) has been called for "CVssIExchWriter::OnPrepareSnapshot".
    =================================
    Log Name:      Application
    Source:        ESE
    Date:          10/23/2012 10:41:53 AM
    Event ID:      2005
    Task Category: ShadowCopy
    Level:         Information
    Keywords:      Classic
    User:          N/A
    Computer:      PLYMAIL.mcquay.com
    Description:
    Information Store (3572) Shadow copy instance 2051 starting. This will be a Full shadow copy.
    =================================
    The events continue on, basically snapshotting all of Exchange. From the DPM side, the total amount of data transferred tells me that even though Exhange is trunctating its logs, nothing is actually being sent to the DPM server. So this snapshot operation
    seems to be superfluous. ~30 minutes later, when my regularly scheduled Exchange job runs, it fails because of a log file discontinuity.
    So, in this case at least, a Hyper-V snapshot backup is definitely causing Exchange to truncate the log files. What can I look at to figure out why this is happening?

  • Server started in RUNNING mode not showing in Startup Log File when MS Starts

    Dear all,
    When we start OSB Managed Server, server status is showing Running Status in Web logic console and it is also serving the requests. but in server Start up log file, it is not showing 'Server started in RUNNING mode' after it started.
    this behavior is only for 4 managed servers in cluster of 6 managed servers. other 2 managed servers are starting and showing the message correctly.
    please some body show some light on it as we need to fix this issue urgently.
    thanks in advance.
    pr

    Dear all,
    When we start OSB Managed Server, server status is showing Running Status in Web logic console and it is also serving the requests. but in server Start up log file, it is not showing 'Server started in RUNNING mode' after it started.
    this behavior is only for 4 managed servers in cluster of 6 managed servers. other 2 managed servers are starting and showing the message correctly.
    please some body show some light on it as we need to fix this issue urgently.
    thanks in advance.
    pr

  • Resisting the creation of new log files when SQL SERVER is restarted

    Hi,
    I know that when SQL server is restarted new log files are created. But is it possible to resist creating new log fils and insert log data in the existing log files that are used before restarting the sql server

    Hello,
    I guess Raghvendra answered your question. And as per your previous post its not clear what you want to ask an you did not revert. Again if your issue is solved appreciate if you can please mark the answer and vote the posts helpful.
     Can I continue to log in the same file.?
    What does this line mean exactly ? Yes SQL Server will continue to use same transaction log file(LDF file) for writing information as it was using before shutdown. If you are talking about errorlog file a new errorlog file would be created which you can
    read using
    sp_readerrorlog
    Even if you stopped SQL Server service mistakenly its not that server is gone. Yes when you stopped the server all inflight transactions are rolled back. And when SQL Server would come online it would undergo crash recovery and would bring all the databases
    online by reading transaction log file and performing redo and undo of information. All committed transaction would be rolled forward and uncommitted would be rolled back.
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
    My Technet Wiki Article
    MVP

  • Console errors on startup OS X Snow Leopard Server, log files and pkgutil

    I have OS X Snow Leopard Server running and there are a number of annoying console messages at startup and subsequent to that. A group of them appear to be related to write permissions for log file (last group). Not so sure about 1-3 below, if they are just warnings or something to worry about.
    1. 2/14/10 12:56:56 PM com.apple.emailrules1292 /System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python/zope /_init_.py:1: UserWarning: Module twisted was already imported from /usr/share/caldavd/lib/python/twisted/_init_.pyc, but /System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python is being added to sys.path
    2. 2/14/10 12:56:56 PM com.apple.emailrules1292 2010-02-14 12:56:56-0600 [-] /usr/share/caldavd/lib/python/twisted/mail/smtp.py:10: exceptions.DeprecationWarning: the MimeWriter module is deprecated; use the email package instead
    3. 2/14/10 12:57:00 PM com.apple.wikid1294 /usr/share/caldavd/lib/python/calendarserver/tap/caldav.py:49: DeprecationWarning: mktap and related support modules are deprecated as of Twisted 8.0. Use Twisted Application Plugins with the 'twistd' command directly, as described in 'Writing a Twisted Application Plugin for twistd' chapter of the Developer Guide.
    4. Several related to permissions for writing to log files it appears:
    2/14/10 12:57:02 PM com.apple.passwordreset1295 2010-02-14 12:57:02-0600 [-] Failed to load application: Errno 13 Permission denied: '/Library/Logs/passwordreset/debug.log'
    2/14/10 12:56:57 PM com.apple.emailrules1292 Failed to load application: Errno 13 Permission denied: '/Library/Logs/emailrules/debug.log'
    2/14/10 12:57:01 PM com.apple.wikid1294 IOError: Errno 13 Permission denied: '/Library/Logs/wikid/error.log'
    The pkgutil also gives a bunch of errors at startup related to Office 2008 files.
    2010-02-14 13:48:38.361 pkgutil3679:903 PackageKit: * Missing bundle identifier: /Library/Receipts/Citrix online plug-in.pkg
    2010-02-14 13:48:38.366 pkgutil3679:903 PackageKit: * Missing bundle identifier: /Library/Receipts/Office2008enautomator.pkg
    2010-02-14 13:48:38.368 pkgutil3679:903 PackageKit: * Missing bundle identifier: /Library/Receipts/Office2008en_automatorworkflow.pkg
    2010-02-14 13:48:38.369 pkgutil3679:903 PackageKit: * Missing bundle identifier: /Library/Receipts/Office2008enautoupdate.pkg
    2010-02-14 13:48:38.370 pkgutil3679:903 PackageKit: * Missing bundle identifier: /Library/Receipts/Office2008enclipart.pkg
    2010-02-14 13:48:38.371 pkgutil3679:903 PackageKit: * Missing bundle identifier: /Library/Receipts/Office2008encore.pkg
    2010-02-14 13:48:38.372 pkgutil3679:903 PackageKit: * Missing bundle identifier: /Library/Receipts/Office2008endock.pkg
    2010-02-14 13:48:38.373 pkgutil3679:903 PackageKit: * Missing bundle identifier: /Library/Receipts/Office2008enentourage.pkg
    2010-02-14 13:48:38.374 pkgutil3679:903 PackageKit: * Missing bundle identifier: /Library/Receipts/Office2008en_entourage_helpstd.pkg
    2010-02-14 13:48:38.375 pkgutil3679:903 PackageKit: * Missing bundle identifier: /Library/Receipts/Office2008enequationeditor.pkg
    2010-02-14 13:48:38.376 pkgutil3679:903 PackageKit: * Missing bundle identifier: /Library/Receipts/Office2008enerrorreporting.pkg
    2010-02-14 13:48:38.377 pkgutil3679:903 PackageKit: * Missing bundle identifier: /Library/Receipts/Office2008enexcel.pkg
    2010-02-14 13:48:38.378 pkgutil3679:903 PackageKit: * Missing bundle identifier: /Library/Receipts/Office2008en_excel_helpstd.pkg
    2010-02-14 13:48:38.379 pkgutil3679:903 PackageKit: * Missing bundle identifier: /Library/Receipts/Office2008enfonts.pkg
    2010-02-14 13:48:38.380 pkgutil3679:903 PackageKit: * Missing bundle identifier: /Library/Receipts/Office2008engraph.pkg
    2010-02-14 13:48:38.381 pkgutil3679:903 PackageKit: * Missing bundle identifier: /Library/Receipts/Office2008enhelpviewer.pkg
    2010-02-14 13:48:38.382 pkgutil3679:903 PackageKit: * Missing bundle identifier: /Library/Receipts/Office2008enlaunch.pkg
    2010-02-14 13:48:38.383 pkgutil3679:903 PackageKit: * Missing bundle identifier: /Library/Receipts/Office2008enmessenger.pkg
    2010-02-14 13:48:38.384 pkgutil3679:903 PackageKit: * Missing bundle identifier: /Library/Receipts/Office2008enooxml.pkg
    2010-02-14 13:48:38.385 pkgutil3679:903 PackageKit: * Missing bundle identifier: /Library/Receipts/Office2008enorgchart.pkg
    2010-02-14 13:48:38.386 pkgutil3679:903 PackageKit: * Missing bundle identifier: /Library/Receipts/Office2008enpowerpoint.pkg
    2010-02-14 13:48:38.387 pkgutil3679:903 PackageKit: * Missing bundle identifier: /Library/Receipts/Office2008en_powerpoint_helpstd.pkg
    2010-02-14 13:48:38.388 pkgutil3679:903 PackageKit: * Missing bundle identifier: /Library/Receipts/Office2008en_proofingbrazilian.pkg
    2010-02-14 13:48:38.389 pkgutil3679:903 PackageKit: * Missing bundle identifier: /Library/Receipts/Office2008en_proofingdanish.pkg
    2010-02-14 13:48:38.390 pkgutil3679:903 PackageKit: * Missing bundle identifier: /Library/Receipts/Office2008en_proofingdutch.pkg
    2010-02-14 13:48:38.391 pkgutil3679:903 PackageKit: * Missing bundle identifier: /Library/Receipts/Office2008en_proofingenglish.pkg
    2010-02-14 13:48:38.392 pkgutil3679:903 PackageKit: * Missing bundle identifier: /Library/Receipts/Office2008en_proofingfinnish.pkg
    2010-02-14 13:48:38.393 pkgutil3679:903 PackageKit: * Missing bundle identifier: /Library/Receipts/Office2008en_proofingfrench.pkg
    2010-02-14 13:48:38.394 pkgutil3679:903 PackageKit: * Missing bundle identifier: /Library/Receipts/Office2008en_proofinggerman.pkg
    2010-02-14 13:48:38.395 pkgutil3679:903 PackageKit: * Missing bundle identifier: /Library/Receipts/Office2008en_proofingitalian.pkg
    2010-02-14 13:48:38.396 pkgutil3679:903 PackageKit: * Missing bundle identifier: /Library/Receipts/Office2008en_proofingjapanese.pkg
    2010-02-14 13:48:38.397 pkgutil3679:903 PackageKit: * Missing bundle identifier: /Library/Receipts/Office2008en_proofingnorwegian.pkg
    2010-02-14 13:48:38.398 pkgutil3679:903 PackageKit: * Missing bundle identifier: /Library/Receipts/Office2008en_proofingportuguese.pkg
    2010-02-14 13:48:38.408 pkgutil3679:903 PackageKit: * Missing bundle identifier: /Library/Receipts/Office2008en_proofingspanish.pkg
    2010-02-14 13:48:38.409 pkgutil3679:903 PackageKit: * Missing bundle identifier: /Library/Receipts/Office2008en_proofingswedish.pkg
    2010-02-14 13:48:38.410 pkgutil3679:903 PackageKit: * Missing bundle identifier: /Library/Receipts/Office2008enrequired.pkg
    2010-02-14 13:48:38.411 pkgutil3679:903 PackageKit: * Missing bundle identifier: /Library/Receipts/Office2008ensilverlight.pkg
    2010-02-14 13:48:38.412 pkgutil3679:903 PackageKit: * Missing bundle identifier: /Library/Receipts/Office2008ensounds.pkg
    2010-02-14 13:48:38.413 pkgutil3679:903 PackageKit: * Missing bundle identifier: /Library/Receipts/Office2008enword.pkg
    2010-02-14 13:48:38.414 pkgutil3679:903 PackageKit: * Missing bundle identifier: /Library/Receipts/Office2008en_word_helpstd.pkg

    I have similar messages to your 1-3 in my console log as well. Haven't tracked down why yet.

  • CF Local Server log files?

    Hello... does anyone know if the CF Local server has log
    files similar to IIS or Apache? What I'd like to see is traffic to
    my local machine when running on 127.0.0.1:8500 instead of say IIS
    on 127.0.0.1. In IIS for example I can view the server traffic and
    store this in a SQL database even.
    I've looked through the CF Logs folder and found nothing like
    this.

    We are running Identity Server 6.1 on Solaris.
    The logs are in /var/opt/SUNWam/debug/
    The most useful one is amAuth. You might also want to look at amAuthInternal, amSession, amAuthLDAP, and amAuthContext.
    If you are seeing these, checkout AMConfig.properties (in /opt/SUNWam/lib). It should have the log level set to warning or message for you to get all these logs. Here's the setting from my AMConfig.properties:
    com.iplanet.services.debug.level=warningPS Sorry for the unix paths, but hopefully they map closely to the windows directories.

Maybe you are looking for

  • System.IO.FileNotFoundException: The Web application at ..not found - when getting document versions in a doc lib

    i have created a    asmx file using vs 2012 4.5 framework, and published to my d:\  drive  and mapped to a  iis  web site but when i trued to consume this from a another web appln, it throws me the below error:  System.IO.FileNotFoundException: The W

  • My ipod touch isn't connecting to the internet???

    The internet on my iPod touch has always worked, but today it's not connecting to anything. When I go to settings and then wi-fi it says it's connected to my internet but doesn't show at the top left bar and isn't working? I have tried turning it on

  • Mac OS X Lion does not install!!!

    So I purchased Mac OS X Lion on the app store.  It began to download. When I clicked to install the new OS X LION it stops and says "It could not install because it could not be verified with apple.  Your download might have been corrupted during the

  • Base Unit of Measure issue

    Hi Experts, As per the scenario, my client is manufacturing a rod whose std length is 6m. But, he is selling it in other sizes also like 4.3, 5.5 so on. So, the price should be get calculated on length & no of pieces. As, per my understanding I had p

  • Help!! - originals have disappeared after thumbnail cache reorganisation!

    I've just allowed i-Photo to re-organise the thumbnail cache and have lost a pile of originals! The thumbnails are there but as soon as I click on them a grey blank screen appears.... Any thoughts or suggestions!!?? Andy