I think the point I failed to make is this; in my opinion, handling the logging 
from the UI is a bad thing, just configure your application to log as soon as 
it is started.
 
Ron Grabowski sent a good example of how to do what you want to do, to which 
you replied. Failing that, just include two rolling fille appeneders in your 
config file set to look at different levels, i.e. everything for the developers 
and then a different level for everyone else.
 
I think the biggest question here is what have you tried so far and what 
problems did you encounter?



 



Subject: RE: Can we write the data to Multiple log
Date: Tue, 18 Aug 2009 12:42:53 +0530
From: [email protected]
To: [email protected]







OK are not suppose to use the DB.
 
Coming to logging. I need to use RollingFileAppenders for both of the Logs.
When you say two logs, its one for the Application Developers who needs to get 
complete information for them to track. 
And the other log is for the Tivoli server which keeps tracking the information 
of the logs.
 
And from UI I normally use only one statement saying 
 
Private readonly log4net.ILog  Log = log4net.logManager.GetLogger(“”)
Log.Debug(GetformatedMessage(“Application”));
Log.Debug(GetformatedMessage(“Tivoli”));
 
I was asking you how can we write the information to the different logs.
 

Regards,
Raghuram Raichooti 
________________________________________________________________________________________________________________
 


From: Karim Bourouba [mailto:[email protected]] 
Sent: Tuesday, August 18, 2009 12:29 PM
To: [email protected]
Subject: RE: Can we write the data to Multiple log
 
Without sounding contrite, I think the group provided guidance to you yesterday 
on how to do this? The suggestions were to either configure two rolling file 
appenders or log to a DB. 
  
Why do you need to include anything in your UI? This is only my position on 
this, but - why do you want to specify which log you want to use in the UI? 
Doesnt this reduce the value of your logging by quite some degree?



  



Subject: RE: Can we write the data to Multiple log
Date: Tue, 18 Aug 2009 12:13:53 +0530
From: [email protected]
To: [email protected]

Hi,
>From the UI how can I specify the details to which appender to use.
 
My requirement is like there will be two log:
-          Complete Information, which contains data along with the stack trace 
and many more parameters coming from the exception
-          Simple information saying “There was a error with code and simple 
details”
 
And in this case I need to log them in two different logs at a time.
 
Can you please send me the samples. 
 
Thanks in advance.
 

Regards,
Raghuram Raichooti 
________________________________________________________________________________________________________________
 


From: Ron Grabowski [mailto:[email protected]] 
Sent: Tuesday, August 18, 2009 7:06 AM
To: Log4NET User
Subject: Re: Can we write the data to Multiple log
 


Does this example help?

<?xml version="1.0" encoding="utf-8" ?>
<log4net>
  <appender name="SimpleLayoutFileAppender" 
type="log4net.Appender.FileAppender">
    <file value="Logs\Simple.txt" />
    <layout type="log4net.Layout.SimpleLayout" />
  </appender>
  <appender name="PatternLayoutFileAppender" 
type="log4net.Appender.FileAppender">
    <file value="Logs\PatternLayout.txt" />
    <layout type="log4net.Layout.PatternLayout">
      <conversionPattern value="%5level %date (%logger:%line) - 
%message%newline" />
    </layout>
  </appender>
  <root>
    <appender-ref ref="SimpleLayoutFileAppender" />
    <appender-ref ref="PatternLayoutFileAppender" />
  </root>
</log4net>

 




From: "[email protected]" <[email protected]>
To: [email protected]
Sent: Monday, August 17, 2009 4:16:42 AM
Subject: Can we write the data to Multiple log



Hi,
 
I am using the Rolling File Appender, and in this I would like to write the 
exception raised to two different logs one with simple information and other 
with the complete information.
 
In the config file I have two sections defining the paths.
 
<?xml version="1.0" standalone="yes" ?>
  <SYSTEMINFORMATION>
    <SYSTEMID>DIS</SYSTEMID>
    <ERRORCODELISTPATH>/config/errorCode.xml</ERRORCODELISTPATH>
  </SYSTEMINFORMATION>
 
  <APPENDER MODE="tivoli" NAME="RollingLogFileAppender" 
TYPE="log4net.Appender.RollingFileAppender">
    <FILENAME VALUE="d://svr_app_prod//logs//app_logs//diss//tivoli.log" />
    <APPENDTOFILE VALUE="true" />
    <ROLLINGSTYLE VALUE="Size" />
    <MAXROLLBACKUPSIZE VALUE="10" />
    <MAXFILESIZE VALUE="10MB" />
    <MAXENTRIESPERSECOND VALUE="10" />
    <STATICLOGFILENAME VALUE="true" />
    <LAYOUT TYPE="log4net.Layout.PatternLayout">
      <CONVERSIONPATTERN VALUE="%date [%thread] %-5level %logger 
[%property{ndc}] - %message%newline" />
    </LAYOUT>
  </APPENDER>
 
  <APPENDER MODE="application" NAME="RollingLogFileAppender" 
TYPE="log4net.Appender.RollingFileAppender">
    <FILENAME VALUE="d://svr_app_prod//logs//app_logs//diss//application.log" />
    <APPENDTOFILE VALUE="true" />
    <ROLLINGSTYLE VALUE="Size" />
    <MAXROLLBACKUPSIZE VALUE="50" />
    <MAXFILESIZE VALUE="50MB" />
    <MAXENTRIESPERSECOND VALUE="10" />
    <STATICLOGFILENAME VALUE="true" />
    <LAYOUT TYPE="log4net.Layout.PatternLayout">
      <CONVERSIONPATTERN VALUE="%date [%thread] %-5level %logger 
[%property{ndc}] - %message%newline" />
    </LAYOUT>
</APPENDER>
</DataSetConfiguration>
 
In our application we only mention Log.Debug(“Logging Information”).  
 
Could you please tell me how to specify the details of the log file.
 
Regards,
Raghuram Raichooti 
________________________________________________________________________________________________________________
 

This message is for the designated recipient only and may contain privileged, 
proprietary, or otherwise private information. If you have received it in 
error, please notify the sender immediately and delete the original. Any other 
use of the email by you is prohibited.

 
This message is for the designated recipient only and may contain privileged, 
proprietary, or otherwise private information. If you have received it in 
error, please notify the sender immediately and delete the original. Any other 
use of the email by you is prohibited.
 



Windows Live Messenger: Celebrate 10 amazing years with free winks and 
emoticons. Get Them Now



This message is for the designated recipient only and may contain privileged, 
proprietary, or otherwise private information. If you have received it in 
error, please notify the sender immediately and delete the original. Any other 
use of the email by you is prohibited.
_________________________________________________________________
Celebrate a decade of Messenger with free winks, emoticons, display pics, and 
more.
http://clk.atdmt.com/UKM/go/157562755/direct/01/

Reply via email to