active questions tagged logging - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T14:14:54Z http://stackoverflow.com/feeds/tag/logging http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1937491/methodology-for-saving-values-over-time 1 Methodology for saving values over time Jim Kramer 2009-12-20T23:35:37Z 2009-12-21T10:33:33Z <p>I have a task, which I know how to code (in C#), but I know a simple implementation will not meet ALL my needs. So, I am looking for tricks which might meet ALL my needs.</p> <ol> <li><p>I am writing a simulation involving N number of entities interacting over time.</p></li> <li><p>N will start at around 30 and move in to many thousands.</p> <pre><code>a. The number of entities will change during the course of the simulation. </code></pre> <p>b. I expect this will require each entity to have its own trace file.</p></li> <li><p>Each Entity has a minimum of 20 parameters, up to millions; I want to track over time.</p> <p>a. This will most likely required that we can’t keep all values in memory at all times. Some subset should be fine.</p> <p>b. The number of parameters per entity will initially be fixed, but I can think of some test which would have the number of parameters slowing changing over time.</p></li> <li><p>Simulation will last for millions of time steps and I need to keep every value for every parameter.</p></li> <li><p>What I will be using these traces for:</p> <p>a. Plotting a subset (configurable) of the parameters for a fixed amount of time from the current time step to the past. </p> <pre><code>i. Normally on the order of 300 time steps. ii. These plots are in real time while the simulation is running. </code></pre> <p>b. I will be using these traces to re-play the simulation, so I need to quickly access all the parameters at a give time step so I can quickly move to different times in the simulation.</p> <pre><code>i. This requires the values be stored in a file(s) which can be inspected/loaded after restarting the software. ii. Using a database is NOT an option. </code></pre> <p>c. I will be using the parameters for follow up analysis which I can’t define up front so a more flexible system is desirable. </p></li> </ol> <p>My initial thought:</p> <ol> <li><p>One class per entity which holds all the parameters. </p></li> <li><p>Backed by a memory mapped file.</p></li> <li><p>Only a fixed, but moving, amount of the file is mapped to main memory</p></li> <li><p>A second memory mapped file which holds time indexes to main file for quicker access during re-playing of simulation. This may be very important because each entity file will represent a different time slice of the full simulation.</p></li> </ol> http://stackoverflow.com/questions/1936996/interactive-python-script-output-stored-in-some-file 1 Interactive python script output stored in some file yart 2009-12-20T20:47:26Z 2009-12-21T09:05:07Z <p>Hi All, could you please advice how to perform logging of all activities that are done by python script and all scripts that are called from it.</p> <p>I had several bash scripts but now wrote python script which call all of these bash scripts. I would like to have all output produced from these scripts stored in some file.</p> <p>The script is interactive python script, i.e contains raw_input lines, so I couldn't do like 'python script.py | tee log.txt' for overall python script since for some reasons questions are not seen on the screen. </p> <p>Here excerpt from the script which calls one of the schell scripts.</p> <pre><code> cmd = "somescript.sh" try: retvalue = subprocess.check_call(cmd, shell=True) except subprocess.CalledProcessError: print ("script command has been failed") sys.exit("exit from script") </code></pre> <p>What do you think what could be done here?</p> <p>Thanks.</p> <p><strong>Edit</strong></p> <p>Two subquestions based on Alex's answer:</p> <ol> <li><p>How to make the answers on the questions stored in the output file as well? For example on line ok = raw_input(prompt) the user will be asked for the question and I would like to the answer logged as well.</p></li> <li><p>I read about Popen and communicate and didn't use since it buffers the data in memory. Here amount of output is big and I need to care about standard-error with standard-output as well. Do you know if this is possible to handle with Popen and communicate method as well?</p></li> </ol> http://stackoverflow.com/questions/1938724/generic-import-merge-logging-preprocessing-framework 0 Generic import/merge logging preprocessing framework Aran Mulholland 2009-12-21T07:41:52Z 2009-12-21T07:41:52Z <p>We write reporting software. we want to do imports of data, when the user imports data we need to do a pre-process phase and display an overview of the impact the import will have.</p> <p>then the user will be able to choose actions based on this pre-processing phase that will determine how the actual import will proceed. usually in a situation such as this there will be several hundred issues that may arise, that can be categorised into groups, as they are essentially the same error/issue on different data.</p> <p>we are looking for a generic logging management approach that allows users to specify actions to take at either the group level or individual data level. i have a feeling i will be writing this ourselves but would be interested to see what others have done. if anyone has looked at this problem space (even in a different language, th dot Net is preferred) i would be interested to hear about the problems and challenges.</p> http://stackoverflow.com/questions/944020/best-practices-for-defining-patternlayout-when-using-log4j-syslogappender 0 Best Practices for defining PatternLayout when using Log4j SyslogAppender jm04469 2009-06-03T10:22:15Z 2009-12-21T00:00:01Z <p>For those who are developing applications that are under PCI scope, where the guidance suggests that you should store your application logs on another tier, remoting to a syslog server elsewhere feels like a best practice.</p> <p>The question becomes, what should the PatternLayout look like that best enables folks to review their logs at least daily?</p> http://stackoverflow.com/questions/1293036/abstracting-net-logging-with-common-infrastructure-libraries 0 Abstracting .NET logging with Common Infrastructure Libraries: Sosh 2009-08-18T10:21:53Z 2009-12-20T04:12:09Z <p>Hi,</p> <p>I've recently been considering abstracting my logging across the application. A more specific post on another resource led to the recommendation of the "Common Infrastructure Libraries":</p> <p><a href="http://netcommon.sourceforge.net/" rel="nofollow">http://netcommon.sourceforge.net/</a></p> <p>Specifically, the Common.Logging class, which provides a common interface which can sit in front of a number of logging implimentations (such as log4net).</p> <p>I'm a bit loathed to introduce yet another peice of 3rd party code into my project though.</p> <p>Has anybody used this library? I would be interested in hearing your experiences.</p> <p>Thanks</p> http://stackoverflow.com/questions/1038466/logging-raw-http-request-response-in-asp-net-mvc-iis7 6 Logging raw HTTP request/response in ASP.NET MVC & IIS7 Greg Beech 2009-06-24T13:44:31Z 2009-12-19T22:12:33Z <p>I'm writing a web service (using ASP.NET MVC) and for support purposes we'd like to be able to log the requests and response in as close as possible to the raw, on-the-wire format (i.e including HTTP method, path, all headers, and the body) into a database. </p> <p>What I'm not sure of is how to get hold of this data in the least 'mangled' way. I can re-constitute what I believe the request looks like by inspecting all the properties of the <code>HttpRequest</code> object and building a string from them (and similarly for the response) but I'd really like to get hold of the actual request/response data that's sent on the wire.</p> <p>I'm happy to use any interception mechanism such as filters, modules, etc. and the solution can be specific to IIS7. However, I'd prefer to keep it in managed code only.</p> <p>Any recommendations?</p> <p><strong>Edit:</strong> I note that <code>HttpRequest</code> has a <a href="http://msdn.microsoft.com/en-us/library/system.web.httprequest.saveas.aspx" rel="nofollow"><code>SaveAs</code></a> method which can save the request to disk but this reconstructs the request from the internal state using a load of internal helper methods that cannot be accessed publicly (quite why this doesn't allow saving to a user-provided stream I don't know). So it's starting to look like I'll have to do my best to reconstruct the request/response text from the objects... groan.</p> <p><strong>Edit 2:</strong> Please note that I said the <em>whole</em> request including method, path, headers etc. The current responses only look at the body streams which does not include this information.</p> <p><strong>Edit 3:</strong> Does nobody read questions around here? Five answers so far and yet not one even hints at a way to get the whole raw on-the-wire request. Yes, I know I can capture the output streams and the headers and the URL and all that stuff from the request object. I already said that in the question, see:</p> <blockquote> <p>I can re-constitute what I believe the request looks like by inspecting all the properties of the HttpRequest object and building a string from them (and similarly for the response) but I'd really like to get hold of the actual request/response data that's sent on the wire.</p> </blockquote> <p>If you know the <em>complete</em> raw data (including headers, url, http method, etc.) simply cannot be retrieved then that would be useful to know. Similarly if you know how to get it all in the raw format (yes, I still mean including headers, url, http method, etc.) without having to reconstruct it, which is what I asked, then that would be very useful. But telling me that I can reconstruct it from the <code>HttpRequest</code>/<code>HttpResponse</code> objects is not useful. I know that. I already said it.</p> <p><hr /></p> <p><em>Please note: Before anybody starts saying this is a bad idea, or will limit scalability, etc., we'll also be implementing throttling, sequential delivery, and anti-replay mechanisms in a distributed environment, so database logging is required anyway. I'm not looking for a discussion of whether this is a good idea, I'm looking for how it can be done.</em></p> http://stackoverflow.com/questions/882870/logging-ad-user-actions-with-deleted-users 2 Logging AD User Actions (with deleted users) Mike 2009-05-19T13:46:14Z 2009-12-18T21:08:05Z <p>We are about to migrate an intranet web application from using a proprietary forms-based security to Active Directory. The application logs a variety of user actions, and there is a significant amount of data associated with user accounts. Our plan was to migrate all of these UserId columns in various tables: from a foreign key linking the proprietary system, to an Active Directory GUID. Login names are identical between the two systems, so migrating is not an issue.</p> <p>However, we identified one major problem: Our security policy dictates that inactive users must be deleted from Active Directory. An orphaned GUID in our security logs makes the entries pretty meaningless to anyone viewing them.</p> <p><strong>How can an application maintain the human-readable basics (name, login, etc.) about a GUID that has been deleted from Active Directory?</strong></p> <p>We have considered the following options. One of these options may end up being the optimal, but we wish to try for better:</p> <ul> <li>Denormalize the log tables and store name/login instead of a GUID (okay for logs, not so much for active data.)</li> <li>Maintain a "cache" of AD object information where entries are never deleted</li> <li>Keeping the AD account but deactivating/locking it down</li> </ul> http://stackoverflow.com/questions/1930083/log4net-configuration-exception 0 log4net configuration exception Ram 2009-12-18T19:02:10Z 2009-12-18T20:07:45Z <p>I am using log4net for logging. My logging configuration is stored in a separate file.</p> <p>Web.Config:ConfigSections</p> <pre><code>&lt;section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler,log4net" /&gt; </code></pre> <p>Specifying my config file in AssemblyInfo.cs</p> <pre><code>[assembly: log4net.Config.XmlConfigurator(ConfigFile="Log4Net.config", Watch = true)] </code></pre> <p>And when I initialize my LogManager, I get this error</p> <pre><code>"System.TypeLoadException" message: Could not load type 'log4net.Config.Log4NetConfigurationSectionHlandler' from assembly 'Log4net'. </code></pre> <p>Yes it says "Log4NetConfigurationSectionHlandler'", it is not a typo</p> <p>and later, this error</p> <pre><code>An error occurred creating the configuration section handler for log4net: Could not load type 'log4net.Config.Log4NetConfigurationSectionHlandler' from assembly 'Log4net'. </code></pre> <p>Edit: Tried Mauricio Scheffer's suggestion</p> <p>got </p> <pre><code>log4net:ERROR XmlConfigurator: Failed to find configuration section 'log4net' in the application's .config file. Check your .config file for the &lt;log4net&gt; and &lt;configSections&gt; elements. The configuration section should look like: &lt;section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler,log4net" /&gt; </code></pre> http://stackoverflow.com/questions/1928332/is-there-in-r-any-standard-logging-package 5 is there in R any standard logging package? mariotomo 2009-12-18T13:54:51Z 2009-12-18T19:56:36Z <p>not only is googling R so terribly difficult, log4r has also been taken for Ruby!</p> <p>I am looking for the standard (if any) logging package for R. and some sample usage?</p> <p>I also don't see it in <a href="http://cran.r-project.org/web/packages/" rel="nofollow">http://cran.r-project.org/web/packages/</a></p> http://stackoverflow.com/questions/1920748/how-do-i-control-wcf-logging-from-a-log4net-config-file 1 How do I control WCF logging from a log4net config file? Ian Ringrose 2009-12-17T10:21:58Z 2009-12-18T16:45:49Z <p>We do all our logging with log4net, our support staff etc know how to edit the log4net config files. We are now making use of WCF in our apps.</p> <p>Therefore how can I enable the WCF built in logging to be controlled from the log4net config file, so that there is a single way to control all logging.</p> http://stackoverflow.com/questions/1926713/android-uploading-a-text-file-periodically 0 Android: Uploading a text file periodically? Legend 2009-12-18T06:44:57Z 2009-12-18T16:09:15Z <p>If I want to upload a text file containing some game stats to a web server for testing purpose, which approach is the best? Do I write a service along with my application and then upload the log file once it reaches a specific size? Or do I embed the logic into my application and then do it during idle times?</p> http://stackoverflow.com/questions/1928975/multiple-log-files-in-symfony 1 multiple log files in symfony Mike 2009-12-18T15:48:18Z 2009-12-18T15:48:18Z <p>I'd like to set up an additional log file in symfony, so that some messages (payment processing in my case) would go to a different file from the rest of symfony. Is it possible? Here's my current log configuration from factories.yml: </p> <pre><code>all: logger: param: level: debug loggers: sf_file_debug: param: level: notice file: /var/log/symfony/%SF_ENVIRONMENT%/%SF_APP%.log </code></pre> http://stackoverflow.com/questions/1928391/logging-changing-implementation 2 logging- changing implementation? Ram 2009-12-18T14:06:36Z 2009-12-18T14:30:51Z <p>We have been using log4net for logging our asp.net web forms application. Our logging is typically in our business layer and the typical implementation is like this</p> <pre><code>SomeMethodCall(MethodParams) { Log.Start("Starting Some Method"); try { //do something } catch(Exception ex) { Log.Exception("exception in SomeMethodCall" + ex.message); } Log.End("End SomeMethod"); } </code></pre> <p>In my opinon, it is a bit clumsy. Is there a cleaner way of doing it without using AOP ?I am not sure if I would need to have the overhead of adding a framework, just for logging, thought I understand that it would give me a lot of other options (which I do not need)</p> <p>I am thinking of using some AOP frameworks to do it in a more cleaner way, just by marking the methods with attributes to log and handle exceptions.</p> <p>There are 2 things I am concerned with AOP (after my initial reading). </p> <p>Some frameworks inject code into your IL(as per my understanding) and am concerned if it would misguide me. I might be looking at line x, given by my AOP framework, where as it actually might be line y in my application. Is my fear unfounded?</p> <p>Performance: How much of a performance overhead would be added if using an AOP framework.</p> <p>Edit: I was also looking into <a href="http://www.davidhayden.com/blog/dave/archive/2007/03/03/PolicyInjectionApplicationBlockSample.aspx" rel="nofollow">PolicyInjectionApplicationBlock</a>. Unfortunately, I do not have the luxury of changing implementaions inside my business logic</p> http://stackoverflow.com/questions/1927975/best-way-to-log-errors-in-wcf 1 Best way to log errors in WCF ForeverDebugging 2009-12-18T12:36:21Z 2009-12-18T14:19:15Z <p>What's the best way to catch and log errors when developing a WCF service layer, and why?</p> <p>I can think of three ways,</p> <p>1) Manual try/catches around each method.</p> <p>2) Leave the responsibility to the WCF engine.</p> <p>3) Use a third party library such as Enterprise Library Policy Injection/Logging.</p> http://stackoverflow.com/questions/1923934/how-can-i-enable-wcf-logging-so-that-it-writes-to-a-database 1 How can I enable WCF logging so that it writes to a Database? chtmd 2009-12-17T19:15:50Z 2009-12-18T11:49:14Z <p>I'd like to be able to log message information in a database, and I'm trying to decide how best to do that. Is it possible to configure the WCF logging mechanisms to write to a database instead of a file? Thanks.</p> http://stackoverflow.com/questions/201354/is-log4net-much-slower-than-system-diagnostics-trace 7 Is log4net much slower than System.Diagnostics.Trace? OwenP 2008-10-14T14:22:44Z 2009-12-18T10:05:32Z <p>I'm investigating the differences between using log4net and <code>System.Diagnostics.Trace</code> for logging, and I'm curious about the performance differences I've observed.</p> <p>I created a test application to compare the performance of both logging methods in several scenarios, and I'm finding that log4net is significantly slower than the <code>Trace</code> class. For example, in a scenario where I log 1,000 messages with no string formatting, log4net's mean execution time over 1,000 trials is 9.00ms. <code>Trace</code> executes with a mean of 1.13ms. A lot of my test cases have a relatively large amount of variance in the log4net execution times; the periodic nature of outlier long executions seems to suggest GC interference. Poking around with CLR Profiler confirms there are a large amount of collections for a ton of <code>log4net.Core.LoggingEvent</code> objects that are generated (to be fair, it looks like <code>Trace</code> generates a ton of <code>Char[]</code> objects as well, but it doesn't display the large variance that log4net does.)</p> <p>One thing I'm keeping in mind here are that even though log4net seems roughly 9 times slower than <code>Trace</code>, the difference is 8ms over 1,000 iterations; this isn't exactly a significant performance drain. Still, some of my expected use cases might be calling methods that are logging things hundreds of thousands of times, and these numbers are from my fast machine. On a slower machine more typical of our users' configurations the difference is 170ms to 11ms which is a tiny bit more alarming.</p> <p>Is this performance typical of log4net, or are there some gotchas that can significantly increase log4net's performance?</p> <p>(<em>NOTE: I am aware that string formatting can alter the execution time; I am trying to compare apples to apples and I have test cases with no formatting and test cases with formatting; log4net stays as proportionally slow whether string formatting is used or not.</em>)</p> <p>The story so far:</p> <ul> <li>Robert Gould has the best answer to the question; I was mainly curious if it was typical to see log4net perform much slower than the <code>Trace</code> class.</li> <li>Alex Shnayder's answer is interesting information but doesn't really fall under the scope of the question. Half of the intent for introducing this logging is to assist in debugging both logical and performance problems on live systems; our customers put our products in many exotic scenarios that are often difficult to reproduce without expensive and large-scale hardware configurations. My main concern is that a large timing difference between "not logging" and "logging" could affect the system in such a way that bugs don't happen. In the end, the scale of the performance decrease is large but the magnitude is small, so I'm hoping it won't be a problem.</li> </ul> http://stackoverflow.com/questions/1926907/how-to-trace-soap-message-on-glassfish-3 0 How to trace SOAP message on Glassfish 3 Piotr K. 2009-12-18T07:49:25Z 2009-12-18T07:56:59Z <p>I would like to save to a server log SOAP envelopes for web service deployed on Glassfish version 3. I know that I can use Wireshark or similar net sniffing tool, but I would prefer to have the messages stored in Glassfish log.</p> http://stackoverflow.com/questions/1923022/imanext-importcmd-trouble 0 IManExt ImportCmd trouble penning 2009-12-17T16:42:06Z 2009-12-17T16:42:06Z <p>Hi </p> <p>I have been writing a small application using C# to copy a document into an individuals 'My Documents' folder on our DMS server.</p> <p>I've beased the code around the listing provided in the 'WorkSite SDK 8: Utilize the IMANEXT2Lib.IManRefileCmd to File New Document Folders' blog.</p> <p>Using this code in a WinForm application I have no problems copying the file from the source folder into the users DMS 'My Documents' folder.</p> <p>However if I use the code in a command line application/.dll or any other type of application (other than WinForm) during the copy process I receive the error messages;</p> <ol> <li> Error occurred when try to log the event!</li> </ol> <p>IManExt: Error occurred when try to log the event!</p> <p>Access is denied.</p> <ol> <li> The document was imported to the database, but could not be added to the folder.</li> </ol> <p>IManExt: The document was imported to the database, but could not be added to the folder.</p> <p>IManExt.LogRuleEventsCmd.1: Error occurred when try to log the event!</p> <p>IManExt.LogRuleEventsCmd.1: Access is denied.</p> <p>Error occurred when try to log the event!</p> <p>-%-</p> <p>Does anyone know why I'd receiving the 'Access Denied' error messages when using a non-WinForms application to copy documents? What would I need to do to get around this issue?</p> <p>Any help would be amazing!</p> <p>Code in place;</p> <p><code></p> <pre><code> public void moveToDMS(String servName, String dBName, String foldName) { const string SERVERNAME = servName; //Server name const string DATABASENAME = dBName; //Database name const string FOLDERNAME = foldName; //Matter alias of workspace IManDMS dms = new ManDMSClass(); IManSession sess = dms.Sessions.Add(SERVERNAME); sess.TrustedLogin(); //Get destination database. IManDatabase db = sess.Databases.ItemByName(DATABASENAME); //Get destination folder by folder and owner name. IManFolderSearchParameters fparms = dms.CreateFolderSearchParameters(); fparms.Add(imFolderAttributeID.imFolderOwner, sess.UserID); fparms.Add(imFolderAttributeID.imFolderName, FOLDERNAME); //Build a database list in which to search. ManStrings dblist = new ManStringsClass(); dblist.Add(db.Name); IManFolders results = sess.WorkArea.SearchFolders(dblist, fparms); if (results.Empty == true) { //No results returned based on the search criteria. Console.WriteLine("NO RESULTS FOUND!"); } IManDocumentFolder fldr = null; if (results.Empty == false) { //Assuming there is only one workspace returned from the results. fldr = (IManDocumentFolder)results.ItemByIndex(1); } if (fldr != null) { // Import file path string docPath = @"C:\Temp\"; string docName = "MyWord.doc"; // Create an instance of the ContextItems Collection Object. ContextItems context = new ContextItemsClass(); // Invoke ImportCmd to import a new document to WorkSite database. ImportCmd impCmd = new ImportCmdClass(); // The WorkSite object you pass in can be a database, session, or folder. // Depends on in where you want the imported doc to be stored. context.Add("IManDestinationObject", fldr); //The destination folder. // Filename set here is used for easy example, a string variable is normally used here context.Add("IManExt.Import.FileName", docPath + docName); // Document Author context.Add("IManExt.Import.DocAuthor", sess.UserID); //Example of a application type. // Document Class context.Add("IManExt.Import.DocClass", "BLANK"); //Example of a document class. //context.Add("IManExt.Import.DocClass", "DOC"); //Example of a document class. // Document Description (optional) context.Add("IManExt.Import.DocDescription", docName); //Using file path as example of a description. // Skip UI context.Add("IManExt.NewProfile.ProfileNoUI", true); impCmd.Initialize(context); impCmd.Update(); if (impCmd.Status == (int)CommandStatus.nrActiveCommand) { impCmd.Execute(); bool brefresh = (bool)context.Item("IManExt.Refresh"); if (brefresh == true) { //Succeeded in importing a document to WorkSite IManDocument doc = (IManDocument)context.Item("ImportedDocument"); //Succeeded in filing the new folder under the folder. Console.WriteLine("New document number, " + doc.Number + ", is successfully filed to " + fldr.Name + " folder."); } } } } </code></pre> <p></code></p> http://stackoverflow.com/questions/1920728/what-wcf-logging-should-i-enable-to-help-track-down-why-a-channel-is-being-faulte 0 What WCF logging should I enable to help track down why a channel is being faulted? Ian Ringrose 2009-12-17T10:18:23Z 2009-12-17T10:42:07Z <p>The WCF channel is somehow getting into the faulted state in the client, what WCF logging show I enable to help track down the reason?</p> <p>How do I enable the given logging from code? (The channel etc is setup in code rather than a config file on each side)</p> <p><hr></p> <p>Edit: Both sides are Winforms applications, so I don’t have a web.config file, but I do have a app.config file.</p> http://stackoverflow.com/questions/1917900/couchdb-designing-a-logging-system 1 couchdb: designing a logging system jldupont 2009-12-16T21:34:03Z 2009-12-17T00:21:14Z <p>I am contemplating the design of an event logging system based on couchDB.</p> <p>What would be a good way of storing each event?</p> <ol> <li>one document with events as 'attachments'</li> <li>one document per event</li> <li>one document per event-type, events as attachments</li> </ol> <p>Other?</p> http://stackoverflow.com/questions/1750934/best-logging-approach-for-composite-app 1 Best logging approach for composite app? David Veeneman 2009-11-17T18:45:18Z 2009-12-16T21:05:54Z <p>I am creating a Composite WPF (Prism) app with several different projects (Shell, modules, and so on). I am getting ready to implement logging, using Log4Net. It seems there are two ways to set up the logging:</p> <ul> <li><p>Let the Shell project do all of the actual logging. It gets the reference to Log4Net, and other projects fire composite events to let the Shell know that it needs to log something. Those projects fire the events only for levels where logging is turned on in the Shell's app.config file (DEBUG, ERROR, etc), so as not to degrade performance.</p></li> <li><p>Give each project, including modules, a Log4Net reference, and let the project do its own logging to a common log file, instead of sending messages to the Shell for logging.</p></li> </ul> <p>Which is the better approach? Or, is there another approach that I should consider? Thanks for your help.</p> http://stackoverflow.com/questions/1914882/apache-2-windows-rotatelogs-help 0 Apache 2 Windows rotatelogs help Tyler 2009-12-16T14:11:44Z 2009-12-16T20:07:34Z <p>I've been trying to use rotatelogs.exe on Windows Server 2k to rotate the access.log. But whenever I restart apache it gets an error when reading http.conf</p> <p>Here is the line:</p> <pre><code>CustomLog "|D:\Apache2\Apache2\bin\rotatelogs.exe D:\Apache2\Apache2\logs\access.log 86400” common </code></pre> <p>I don't know why it's not working. The paths are correct, common log format is defined. Is my syntax wrong somewhere?</p> http://stackoverflow.com/questions/1168151/unit-testing-logging-and-dependency-injection 1 Unit Testing: Logging and Dependency Injection Dockers 2009-07-22T20:48:41Z 2009-12-16T19:58:05Z <p>So regards logging from SO and other sites on the Internet the best response seems to be:</p> <pre><code>void DoSomething() { Logger.Log("Doing something!"); // Code... } </code></pre> <p>Now generally you'd avoid static methods but in the case of logging (a special case) this is the easiest and cleaniest route. Within the static class you can easily inject an instance via a config file/framework to give you the same effect as DI.</p> <p>My problem comes from a unit testing perspective.</p> <p>In the example code above imagine the point of DoSomething() was to add two numbers together. I'd write my unit tests for this fine. What about the logging?</p> <p>Would I write a unit test for the logging (yet use a mock instance for the logger itself)? I know if this was the case I would have to write an integration test to prove the logger actually wrote to a log file but I'm not sure.</p> <p>Following Test Driven Development (which I do) the unit test would be required for me to dictate the interface no?</p> <p>Any advice?</p> http://stackoverflow.com/questions/1227292/setting-jul-destination-programmatically 0 Setting JUL destination programmatically dhroller 2009-08-04T12:41:49Z 2009-12-16T01:00:01Z <p>I'm using JUL for logging and tracing purposes. How can I within a Java application dynamically set the file to which the log should be written. </p> http://stackoverflow.com/questions/1910378/slf4j-message-format-in-websphere-app-server 0 SLF4J Message Format In WebSphere App Server K-Boo 2009-12-15T21:01:45Z 2009-12-15T22:57:02Z <p>So, I'm beating my head against the wall with logging again. I know, how complex can it be? Well, let's see...</p> <p>I'm starting a new project to be run on WebSphere Application Server 6.1 (actually Portal Server 6.1, but it's WAS 6.1 under the hood - whatever). I usually use java.util.logging for my WAS projects and everything is fine. This customer is a SLF4J fan and wants to use that. Fair enough, sounds easy.</p> <p>So, I deploy slf4j-api-1.5.8.jar and slf4j-jdk14-1.5.8.jar in my WEB-INF/lib directory. In my code I do a --</p> <pre><code>// These classes are coming from org.slf4j.* private static Logger log = LoggerFactory.getLogger(MyClass.class); ... log.debug("This is a log message"); </code></pre> <p>As expected I get an entry in the SystemOut.log. However, it's the format of that message that I can't figure out. A sample would be --</p> <pre><code>[12/15/09 15:43:15:071 EST] 00000042 MyClass D com.example.MyClass This is a log message </code></pre> <p>Let me explain what's in that sample log entry. I assume everything to the left of <strong>com.example.MyClass</strong> is coming from the j.u.l formatter. Everything to the right of it is what I included in my log.debug(). So, who's adding the <strong>com.example.MyClass</strong>? Only thing I can think is that SLF4J is adding it before it passes the message through to the underlying j.u.l.</p> <p>It's the <strong>com.example.MyClass</strong> part that's irritating me. I don't want that included in the SLF4J-generated log message. The class name is already included, so it's extra fluff that's not needed. Plus, the real package names are quite long and their inclusion just pushes the real meat of the log entry too far off to the right.</p> <p>When I use just plain java.util.loggging, the log entry is exactly the same <em>except</em> that the "com.example.MyClass" piece is not included. Exactly as I want!</p> <p><strong>So, the question is - how can I get rid of this extra class name entry in the log messages generated via SLF4J under WAS?</strong></p> <p>Thanks!</p> http://stackoverflow.com/questions/1909871/how-can-i-access-the-configured-log4j-appenders-at-runtime 0 How can I access the configured Log4J appenders at runtime? Seth Weiner 2009-12-15T19:43:31Z 2009-12-15T20:03:15Z <p>I want to configure an appender at startup and then dynamically add and remove it from various loggers on demand. I'd prefer to have log4j configure this appender itself, and just grab a reference to it when needed. If that's not possible, I'll have to instantiate the appender myself and hold onto it.</p> http://stackoverflow.com/questions/1908755/log4net-in-asp-net-mvc-application-does-not-log 0 log4net in ASP.NET MVC application does not log Tim Reynolds 2009-12-15T16:45:13Z 2009-12-15T17:34:57Z <p>I have a number of ASP.NET applications that use log4net without issue. I have not been able to get log4net to log anything in any of the services I wrote using the MVC libraries. I have the configuration identical (aside from log file name) in all the services. Each service is running as the same user and use the same application pool. </p> <p>Here is the configuration I am using:</p> <pre><code>&lt;log4net&gt; &lt;appender name="XMLAppender" type="log4net.Appender.RollingFileAppender"&gt; &lt;file value="C:\logs\SERVICENAME.Log.xml"/&gt; &lt;appendToFile value="true"/&gt; &lt;rollingStyle value="Composite"/&gt; &lt;datePattern value="yyyyMM"/&gt; &lt;maxSizeRollBackups value="10"/&gt; &lt;maximumFileSize value="100MB"/&gt; &lt;layout type="log4net.Layout.XmlLayoutSchemaLog4j"&gt; &lt;locationInfo value="false"/&gt; &lt;/layout&gt; &lt;/appender&gt; &lt;root&gt; &lt;level value="INFO"/&gt; &lt;appender-ref ref="XMLAppender"/&gt; &lt;/root&gt; &lt;/log4net&gt; </code></pre> <p>I have the configSection entry in all, as follows:</p> <pre><code>&lt;configSections&gt; &lt;section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net"/&gt; ... &lt;/configSections&gt; </code></pre> <p>I have also turned on log4net debugging and set system.diagnostics to write the trace to a file. Here is where I see a difference in the output between the MVC and non-MVC applications. </p> <p>MVC:</p> <pre><code>log4net: log4net assembly [log4net, Version=1.2.10.0, Culture=neutral, PublicKeyToken=1b44e1d426115821]. Loaded from [C:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\MVCSERVICENAME\25c1b478\883641ac\assembly\dl3\707a9005\e1887c7f_5040ca01\log4net.DLL]. (.NET Runtime [2.0.50727.3074] on Microsoft Windows NT 6.0.6002 Service Pack 2, v.286) log4net: DefaultRepositorySelector: defaultRepositoryType [log4net.Repository.Hierarchy.Hierarchy] log4net: DefaultRepositorySelector: Creating repository for assembly [MVCSERVICENAME, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null] log4net: DefaultRepositorySelector: Assembly [MVCSERVICENAME, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null] Loaded From [C:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\MVCSERVICENAME\25c1b478\883641ac\assembly\dl3\13a19b30\fdb642f4_937dca01\MVCSERVICENAME.DLL] log4net: DefaultRepositorySelector: Assembly [MVCSERVICENAME, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null] does not have a RepositoryAttribute specified. log4net: DefaultRepositorySelector: Assembly [MVCSERVICENAME, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null] using repository [log4net-default-repository] and repository type [log4net.Repository.Hierarchy.Hierarchy] log4net: DefaultRepositorySelector: Creating repository [log4net-default-repository] using type [log4net.Repository.Hierarchy.Hierarchy] log4net: Hierarchy: Shutdown called on Hierarchy [log4net-default-repository] </code></pre> <p>Non-MVC(Working):</p> <pre><code>log4net log4net assembly [log4net, Version=1.2.10.0, Culture=neutral, PublicKeyToken=1b44e1d426115821]. Loaded from [C:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\SERVICENAME\33034378\c825df91\assembly\dl3\fe97001a\e1887c7f_5040ca01\log4net.DLL]. (.NET Runtime [2.0.50727.3074] on Microsoft Windows NT 6.0.6002 Service Pack 2, v.286) log4net DefaultRepositorySelector: defaultRepositoryType [log4net.Repository.Hierarchy.Hierarchy] log4net DefaultRepositorySelector: Creating repository for assembly [SERVICENAME, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null] log4net DefaultRepositorySelector: Assembly [SERVICENAME, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null] Loaded From [C:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\SERVICENAME\33034378\c825df91\assembly\dl3\827ed068\1a38e2eb_fc7cca01\SERVICENAME.DLL] log4net DefaultRepositorySelector: Assembly [SERVICENAME, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null] does not have a RepositoryAttribute specified. log4net DefaultRepositorySelector: Assembly [SERVICENAME, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null] using repository [log4net-default-repository] and repository type [log4net.Repository.Hierarchy.Hierarchy] log4net DefaultRepositorySelector: Creating repository [log4net-default-repository] using type [log4net.Repository.Hierarchy.Hierarchy] log4net XmlConfigurator: configuring repository [log4net-default-repository] using .config file section log4net XmlConfigurator: Application config file is [C:\content\SERVICENAME\web.config] log4net XmlConfigurator: Configuring Repository [log4net-default-repository] log4net XmlHierarchyConfigurator: Configuration update mode [Merge]. log4net XmlHierarchyConfigurator: Logger [root] Level string is [INFO]. log4net XmlHierarchyConfigurator: Logger [root] level set to [name="INFO",value=40000]. log4net XmlHierarchyConfigurator: Loading Appender [XMLAppender] type: [log4net.Appender.RollingFileAppender] log4net XmlHierarchyConfigurator: Setting Property [File] to String value [C:\Windows\Temp\SERVICENAME.Log.xml] log4net XmlHierarchyConfigurator: Setting Property [AppendToFile] to Boolean value [True] log4net XmlHierarchyConfigurator: Setting Property [RollingStyle] to RollingMode value [Composite] log4net XmlHierarchyConfigurator: Setting Property [DatePattern] to String value [yyyyMM] log4net XmlHierarchyConfigurator: Setting Property [MaxSizeRollBackups] to Int32 value [10] log4net XmlHierarchyConfigurator: Setting Property [MaximumFileSize] to String value [100MB] log4net XmlHierarchyConfigurator: Setting Property [LocationInfo] to Boolean value [False] log4net XmlHierarchyConfigurator: Setting Property [Layout] to object [log4net.Layout.XmlLayoutSchemaLog4j] log4net RollingFileAppender: Type = [0], r0 = [197001], r1 = [197001] log4net RollingFileAppender: Type = [1], r0 = [197001], r1 = [197001] log4net RollingFileAppender: Type = [2], r0 = [197001], r1 = [197001] log4net RollingFileAppender: Type = [3], r0 = [197001], r1 = [197001] log4net RollingFileAppender: Type = [4], r0 = [197001], r1 = [197001] log4net RollingFileAppender: Type = [5], r0 = [197001], r1 = [197002] log4net RollingFileAppender: Searched for existing files in [C:\Windows\Temp] log4net RollingFileAppender: curSizeRollBackups starts at [0] log4net RollingFileAppender: [200912] vs. [200912] log4net FileAppender: Opening file for writing [C:\Windows\Temp\SERVICENAME.Log.xml] append [True] log4net XmlHierarchyConfigurator: Created Appender [XMLAppender] log4net XmlHierarchyConfigurator: Adding appender named [XMLAppender] to logger [root]. log4net XmlHierarchyConfigurator: Hierarchy Threshold [] log4net DefaultRepositorySelector: Creating repository for assembly [SERVICENAME.Core, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null] log4net DefaultRepositorySelector: Assembly [SERVICENAME.Core, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null] Loaded From [C:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\SERVICENAME\33034378\c825df91\assembly\dl3\d74dc9d5\8aa6a7e8_fc7cca01\SERVICENAME.Core.DLL] log4net DefaultRepositorySelector: Assembly [SERVICENAME.Core, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null] does not have a RepositoryAttribute specified. log4net DefaultRepositorySelector: Assembly [SERVICENAME.Core, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null] using repository [log4net-default-repository] and repository type [log4net.Repository.Hierarchy.Hierarchy] log4net DefaultRepositorySelector: repository [log4net-default-repository] already exists, using repository type [log4net.Repository.Hierarchy.Hierarchy] </code></pre> <p>In both cases I am creating the ILog object as follows:</p> <p>private static readonly ILog log = LogManager.GetLogger(typeof(CLASSNAME));</p> <p>Is there something I am missing or some change I need to make to get this working for MVC? At this point I would also be willing to change to another logging solution if it is known to work correctly with MVC. </p> <p>Thanks Tim</p> http://stackoverflow.com/questions/58709/how-to-log-in-t-sql 5 How to log in T-SQL Jonas Engman 2008-09-12T11:17:23Z 2009-12-15T08:18:54Z <p>I'm using ADO.NET to access SQL Server 2005 and would like to be able to log from inside the T-SQL stored procedures that I'm calling. Is that somehow possible?</p> <p>I'm unable to see output from the 'print'-statement when using ADO.NET and since I want to use logging just for debuging the ideal solution would be to emit messages to DebugView from SysInternals.</p> http://stackoverflow.com/questions/1901086/how-to-instantiate-c-tracesources-to-log-multithreaded-asp-net-2-0-web-applica 0 how to instantiate C# TraceSources to log (multithreaded) ASP.NET 2.0 Web application (asmx ws)? matti 2009-12-14T13:57:59Z 2009-12-14T17:52:48Z <p>None of the examples on TraceSource I found addresses multithreading. I create new instance of a class (SyncService) to serve a incoming request. When there is lots of activity there is multiple threads that need to use this TraceSource to log activities. How should I use this class for logging with performance and thread safety in mind? I have some opts in mind:</p> <pre> private static TraceSource _source; static SyncService() { _source = new TraceSource("mySrc"); } </pre> <p>in case above the thread safety is an issue. There is quite a lot logging so i don't want to make locks everywhere to guard access to TraceEvent-method. What about removing both static-keywords? Is there lots of overhead when all the requests do logging from their own TraceSource? Is there better solution than these 2? msdn states: "Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe." What should i thinks about that?</p> http://stackoverflow.com/questions/1900632/how-to-detect-if-page-load-in-newly-started-browser-process-fails 1 How to detect if page load in newly-started browser process fails? loviji 2009-12-14T12:24:46Z 2009-12-14T17:49:41Z <p>Hello, I use <code>Process.Start("firefox.exe", "http://localhost/page.aspx");</code> And how i can know page fails or no? OR How to know via HttpWebRequest, HttpWebResponse page fails or not?</p> <p>When i use</p> <pre><code>HttpWebRequest myReq = (HttpWebRequest)WebRequest.Create("somepage.aspx"); HttpWebResponse loWebResponse = (HttpWebResponse)myReq.GetResponse(); Console.Write("{0},{1}",loWebResponse.StatusCode, loWebResponse.StatusDescription); </code></pre> <p>how can I return error details?</p> <p>Not need additional plugins and frameworks. I want to choose this problem only by .net</p> <p>Any Idea please</p>