Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 93889
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T23:24:55+00:00 2026-05-10T23:24:55+00:00

I am creating a Windows service. When an exception occurrs, I handle it appropriately

  • 0

I am creating a Windows service. When an exception occurrs, I handle it appropriately and create a log. I am using the decorator pattern, as there are many different ways people will be looking at these logs. I have an email logger, a file logger, and a windows event logger, all which inherit from LoggingDecorator, which implements ILogger. So, no logger knows about any other logger.

My question is: How should I handle logging exceptions?

If writing to a file fails, or sending an email fails, what should I do? I want to log the initial log content with the other loggers, but what do I do with the logging exception? Doesn’t it also depend on the order of the loggers in the constructor?

Right now, I’m just wrapping try/catch blocks with empty catch(Exception) statements, which just feels dirty and makes FxCop yell at me. However, is this one of those ‘it depends’ moments?

[Flags] public enum LoggingCategories {     None = 0,     ServiceEvents = 1,      ProcessingInformation = 2,     ProcessingErrors = 4,     UnexpectedErrors = 8 }  public interface ILogger {     void LogMessage(LoggingCategories category, string message); }  public abstract class LoggerDecorator : ILogger {     private ILogger _decoratedLogger;     private LoggingCategories _categories;      protected LoggerDecorator(ILogger logger, LoggingCategories categories)     {         this._decoratedLogger = logger;         this._categories = categories;     }      protected bool ShouldLogCategory(LoggingCategories category)     {         return ((this._categories & category) == category);     }      public virtual void LogMessage(LoggingCategories category, string message)     {         _decoratedLogger.LogMessage(category, message);     }  }  public class ControlLogger : ILogger {     public ControlLogger()     {     }      public void LogMessage(LoggingCategories category, string message)     {         Console.WriteLine(LoggingHelper.ConstructLog(category, message));     } } 

(questionable code in WindowsEventLogger)

try {     this._eventLog.WriteEntry(log, type); } catch (Exception) {     //Even if this logging fails, we do not want to halt any further logging/processing. } 

(code in service constructor)

ILogger controlLogger = new ControlLogger(); ILogger windowsEventLogger = new WindowsEventLogger(controlLogger, windowsEventLogCategories, windowsEventLogSource); ILogger emailLogger = new EmailLogger(windowsEventLogger, emailCategories, emailSubject, emailAddresses); ILogger fileLogger = new FileLogger(emailLogger, fileCategories, logDirectory, logFileNamePrefix, logFileExtension);  this._logger = fileLogger; 
  • 1 1 Answer
  • 1 View
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T23:24:56+00:00Added an answer on May 10, 2026 at 11:24 pm

    Its not an answer, but curious why did you choose to not utilize the existing System.Diagnostics.Trace methods. You could implement some type of categorization of log types on top it it perhaps?

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm creating a windows service that will let different users connect to the PC
I'm creating a windows service on a windows 2003 machine, using dsofile to modify
Our team trying to create a windows application(c#) to call a WCF service using
Im creating a Windows Service and I want to put a dynamic path in
I am creating a windows service that starts a number of slave processes. In
I'm working on creating a windows service that will send emails to a customer
I am developing a .NET Windows service that is creating a couple of threads
Using this tutorial: http://www.c-sharpcorner.com/uploadfile/UrmimalaPal/creating-a-windows-phone-7-application-consuming-data-using-a-wcf-service/ I have created sample/hello world application on the windows phone
I am creating a windows application using VB.Net and this application will take a
I am creating Windows service class in Python that will eventually display a Window

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.