Click here to Skip to main content
15,898,588 members

Comments by K.B.Rajesh (Top 4 by date)

K.B.Rajesh 2-Jul-20 0:09am View    
Garth J Lancaster, Thank you so much for your support..!

But I want to make to store the logs in below folder structure.

Root Folder:
-----------------
Logs-
----InfoLog-
--------Method1
--------Method2
--------Method3
----DebugLog-
--------Method1
--------Method2
--------Method3
----ErrorLog-
--------Method1
--------Method2
--------Method3

I want to store each Method Info, Debug & and Error logs to specific each folder structure.

If don't mind, could you please provide the sample code.
K.B.Rajesh 30-Jun-20 7:46am View    
Thanks you so much for your response.
I have changed the code ThreadPool.QueueUserWorkItem(task => log.Debug(msg)) instead of log.Error(msg) in Logger file.

Now, All logs are writing properly. but I'm facing another one problem. All Info, Debug, & errors writing in same file.

Please help on this. I need to write seperate file for all level.
K.B.Rajesh 30-Jun-20 7:45am View    
Deleted
I have changed the code ThreadPool.QueueUserWorkItem(task => log.Debug(msg)) instead of log.Error(msg) in Logger file.

Now, All logs are writing properly. but I'm facing another one problem. All Info, Debug, & errors writing in same file.

Please help on this. I need to write seperate file for all level.
K.B.Rajesh 30-Jun-20 6:04am View    
Deleted
Thanks you so much for your response.