Tagged Questions
1
vote
1answer
25 views
Is there any merit in 'Aspect Based Tracing'?
Just to be clear, my meaning of 'aspect' is a horizontal factor of the application's functions, not intercepting all method calls as in Aspect Oriented Programming.
I have just discovered the beauty ...
0
votes
1answer
27 views
Installing Nlog Config into Eventlog with InstallNlogConfig
I'm trying to write a log with Nlog into Eventlog, this a example of my Nlog.config
<target xsi:type="EventLog"
name="eventlog"
layout="${message}"
log="Application"
...
5
votes
2answers
130 views
Gray out logging code using ReSharper
Is it possible to use ReSharper to gray out useful but bloaty code using ReSharper? For example, when I want to add verbose logging it would be good to make the functional code stand out around the ...
0
votes
0answers
17 views
VC# Realtime event log?
I'm writing an WPF application in Virtual Studio 2012 which uses both voice commands and input over LAN from an iOS app, but I want to have a way to monitor what the vocal recognition thinks it ...
0
votes
0answers
25 views
How to use logger of parent class
Here is my scenario
I have a log4net logger configured in class A.
Class A's functions create instances of class B.
I have a function in class A called "Log" that adds log using some of the ...
0
votes
0answers
26 views
Why am I getting all this extra Debug text spam in my Azure WADLogsTable?
I am logging my worker role to the normal WADLogsTable.
every line has appened, some spammy text which I would prefer not to include.
Here's some sample text:
About to start main worker role loop.; ...
6
votes
1answer
198 views
How to log complex synchronization process?
I'm developing a complicated distributed service that makes iterative synchronization process. It synchronise every 10 seconds business entities in different information systems. One iteration is ...
1
vote
1answer
48 views
FrameLog and .Net Framework
I was looking for some simple entity framework logging and I found out FrameLog. I see that its minimal EF version requirements is 5. But what about the .net framework version? Will FrameLog will be ...
2
votes
1answer
46 views
Sending results of MStest (from XML) to my manager
I am using Selenum Webdriver using .Net bindings, Selenium Grid, MStest framework, testing our web application.
My manager does not want to have to scan an XML file, which is the output format from ...
1
vote
2answers
32 views
Logging to an arbitrary framework specified at runtime
I'm developing a component where one of the requirements is that it has no compile dependencies on my company's proprietary code. Another requirement is that it needs to log using our proprietary ...
0
votes
1answer
120 views
Enterprise Library logging to filter by category like some value
I've been looking around for documentation regarding enterprise library 5.0 logging and filtering but couldn't find anything related to my scenario, outside of the enterprise library CHM.
I have a ...
0
votes
1answer
186 views
PowerShell: move files to zip with System.IO.Compression.FileSystem
How can I move log files to zip archives with System.IO.Compression.FileSystem in PowerShell?
I have more folders with log files per application:
app1logfolder
|-app1_20130507.log
...
3
votes
4answers
143 views
Log entire SOAP request or only parameters in it?
I have synchronization application that sends requests to web service every 10 seconds and makes some data chengings in local database and vice-versa. For my convenience and for solving of some ...
0
votes
1answer
62 views
Common.Logging support of logging to file.
I was looking through the documentation for common logging and didn't notice any support for writing to a log file outside of leveraging other logging technologies such as Log4Net, Enterprise library, ...
7
votes
8answers
296 views
unable to get log4net working with .net windows service
I have a windows service, with an app.config, and log4net.config
app.config:
<configSections>
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" ...
0
votes
1answer
54 views
Setting up a default log when Logger not found in Log4Net
I am using Log4Net as the logging mechanism for an application of ours. Our configuration is contained in a config file and in our code we programatically invoke which of our several loggers (mostly ...
0
votes
0answers
25 views
RabbitMQ to disk
I'd like to replace an applications logging module with an logging module that supports pushing the logs to RabbitMQ. NLog seems to support this just fine. My question though is if there's an existing ...
3
votes
2answers
165 views
Can you configure log4net in code instead of using a config file?
I understand why log4net uses app.config files for setting up logging - so you can easily change how information is logged without needing to recompile your code. But in my case I do not want to pack ...
1
vote
2answers
41 views
Programatically force a new log file with Log4Net
NOTE: I read this question and answer, and it does not work for what I want: Log4Net: Programmatically specify multiple loggers (with multiple file appenders)
I have a WCF service that is a ...
0
votes
0answers
39 views
Logging method parameters with PostSharp
How could I log all method parameters on exception with PostSharp v2.1 (without smart tags that added in v3).
Thanks in advance.
0
votes
1answer
37 views
Live log monitoring within the application generating the logs
I have an application in .NET that I need to log. I want to log certain events and exceptions. I saw online that log4net was being heavily recommended for this purpose. I set it up to quickly begin ...
0
votes
0answers
13 views
IIS 7 Html output logging
Is it possible to configure IIS 7 to log all ASPX pages output for each request, without modifying the web application code?
I know I can catch End_Request in Global.asax and then write log from ...
0
votes
0answers
41 views
MaximumFileSize set to 1 MB, log4.net still writes 10 MB into the log file?
I've specified the file size as a maximum of 1 MB but it writes upto 9696 KB in 1 file:
<?xml version="1.0"?>
<configuration>
<configSections>
<section name="log4net" ...
0
votes
1answer
92 views
Sitecore Hidden Items
Every morning when i try to login in my local sitecore login page, i almost have to wait for 5-6 minutes. When i opened the sitecore log files, i found bunch of debug lines similar to this ...
0
votes
1answer
85 views
C++/CLI: how to store a managed reference inside a native class?
In my mixed solution (C++/.NET), I'd like to pass instances of Log4Net's ILog to C++ objects (to unify logging across the solution).
I thought to write a C++ interface (LogInterface), and then ...
0
votes
0answers
23 views
What is the best way to collect log entries?
My application consists of two parts: An ASP.NET WebService and a .NET Windows service. (Framework 4). I would like to share some logging information from both of the applications to a remote console ...
2
votes
1answer
163 views
NLog doesnt write to file
i try to test NLog performance (latest version) with with settings:
<?xml version="1.0" encoding="utf-8" ?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" ...
0
votes
0answers
56 views
Delegates for logging
How can I refactor this piece of code?
ulong get_item_action_id = log.LogAction(iteration_id, "GET_ITEM_SERVICE");
try
{
p = serv.GetItemById(get_item_action_id, ls.externalItem.item);
}
catch ...
0
votes
0answers
38 views
Cannot access log4net.GlobalContext - Why not?
I have an AdoNetAppender logging to a SQL Server database. It works fine; however, I want to add some custom parameters. I have seen an approach like the following:
...
0
votes
1answer
38 views
How to enable Request and Response Logging in the .Net DevKit V2
How to enable logging for the XML?
I tried to follow the directions from
http://docs.developer.intuit.com/0025_Intuit_Anywhere/0200_DevKits/0100_IPP_.NET_DevKit/0600_Logging
I put the code in a test ...
8
votes
9answers
295 views
Design pattern / C# trick for repeated bit of code
I have a WCF service which logs any exceptions and then throws them as FaultExceptions.
I am doing a lot of repetition e.g. in each service method.
try {
// do some work
}
catch(Exception ex)
{
...
0
votes
1answer
105 views
How to read event log created in windows service app?
I have a windows service app, where I have created eventLog object.
eventLog.Log = "MyLog"; // I'm not really sure what value to choose here
eventLog.Source = this.ServiceName;
I install the app ...
0
votes
1answer
55 views
NLog enabling logging from command line
Do you know if there is a way to programmatically enable certain logging level?
I want to keep only error logging enabled during normal application usage but be able to turn on more detailed when ...
5
votes
3answers
351 views
Change trace switch level via app.config
I have app that configures its trace source as follows:
var traceSource = new TraceSource("MyTraceSource");
traceSource.Switch = new SourceSwitch("MyTraceSwitch") { **Level = ...
0
votes
3answers
95 views
How to determine calling method and class name? [duplicate]
I'm currently developing a application logging library using the built in TraceListener. This library will be used in many projects and should offer a simple interface where I only have to care about ...
1
vote
1answer
242 views
Logging framework vs System.Diagnostics Tracing
As I'm currently setting up Logging in my (Asp.Net Web Api) application I was reading about best practices according logging. I came along this question about logging best practices.
I was going the ...
2
votes
3answers
61 views
Is it safe to hold on to exception objects?
I am creating a test logger which will include information about any exceptions that are thrown so that they can be displayed properly using a GUI.
Is it safe to use the following construct:
public ...
1
vote
0answers
197 views
How do I log to a database using EnterpriseLibrary and impersonation?
I'm trying to log exceptions to a database using the enterprise library. I have app setup to use impersonation when connecting to the database but it doesn't seem to be working when it tries to log ...
1
vote
2answers
117 views
Exceptions: How can I get the most possible information?
I have an enterprise application that logs exception information whenever one happens to occur. The application is a combination of C#, and C++.net.
I want to get as much information as I can at the ...
0
votes
2answers
293 views
Error Logging in C# Website
I am planning to implement error logging writing something similar to this:
public static void WriteError(string errorMessage)
{
try
{
string path = "~/Error/" + ...
0
votes
0answers
133 views
log2conosle remoting appender for log4net doesnt work
i have the following app.config:
<log4net>
<appender name="RollingFileAppender" type="log4net.Appender.RollingFileAppender">
<param name="File" value="S3Logger.log"/>
...
1
vote
2answers
335 views
Trace file isn't being created even though TraceEvent is called?
Objective
Use System.Diagnostics to perform tracing. Though I have used log4net and other logging solutions, I am only interested in getting tracing to work with System.Diagnostics.
Problem
Even ...
3
votes
6answers
170 views
Which is the most performance based method of writing logs for Application
I am working in a client server application in which multiple clients and server are working on socket based communication for financial transactions where performance is very critical. Currently I am ...
0
votes
1answer
127 views
Get the control of AppDomain.CurrentDomain object in application
I need to set the current AppDomain to what I create.
I want to Log my application exception using Enterprise Library HandleException method. When I handle the exception, it will insert a log into a ...
0
votes
1answer
76 views
Logger for WCF services
I want to make use of a logger in WCF service, which has two services exposed outside. And I want a daily based (every day new logger file based on date), also separate logger files for both services. ...
0
votes
1answer
71 views
What are some options for logging .NET exceptions and messages in a cloud environment?
I currently have a web application running on Microsoft's Azure platform with multiple web and worker roles. What I would like to be able to do is log all exceptions and messages to a SAAS product so ...
5
votes
1answer
182 views
Any logging framework for Portable Class Library?
Is there any logging framework which supports Portable Class Library? I searched on Nuget but failed to find any.
Thanks,
0
votes
2answers
76 views
C# debug info insert [duplicate]
Possible Duplicate:
How can I add a Trace() to every method call in C#?
In the following example, Im inserting debug info inside each methods so that I can
see which function is called:
...
2
votes
3answers
339 views
Log file to excel sheet in C#
I've a log file similar to below and I want to convert this log file into excel sheeet.
sample log file
DateTime: 2012-12-10 20:27:10
Command: ALTER INDEX [Mypageviews] ON ...
0
votes
2answers
42 views
Application crashing when copying log file while it is running
I have written a small application in Visual Basic (but the problem I am describing would probably appear for any language) and I'm having a problem with my log file.
If I try to copy my application ...

