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

  • Home
  • SEARCH
  • 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
  • 0 Views
  • 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

Ask A Question

Stats

  • Questions 69k
  • Answers 69k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • added an answer 2) The ListView does not support that type of action.… May 11, 2026 at 12:32 pm
  • added an answer I don't see a better way. The code is designed… May 11, 2026 at 12:32 pm
  • added an answer Resharper has this feature. If you have cursor over parameter… May 11, 2026 at 12:32 pm

Related Questions

I am creating a Windows Service in C# that processes messages from a queue.
I am creating a windows service and want to know best practices for this.
I am creating a Windows Forms control derived from UserControl to be embedded in
I am creating a C# windows application to create an Excel 2003 sheet. There
I have a windows service installed using installutil and set to Autostart. My problem
We have an existing WCF service that makes use of wsDualHttpBinding to enable callbacks
I am considering purchasing a code signing certificate from VeriSign or Thawte to sign

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.