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 65k
  • Answers 65k
  • 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 jQuery UI tabs plugin is what you need. Example: <script>… May 11, 2026 at 11:04 am
  • added an answer Answering my own question, I ended up writing a simple… May 11, 2026 at 11:04 am
  • added an answer The error message means that you attempted to run two… May 11, 2026 at 11:04 am

Related Questions

I am creating a Windows service. When an exception occurrs, I handle it appropriately
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 am creating a C# Windows Mobile application that I need to programmatically invoke
I am creating a small application that will be deployed on Window. The database
I am creating windows installer project using Visual Studio 2005. Is there an option
I am creating a small modal form that is used in Winforms application. It
I am creating a program that will be installed using the .net installer project.

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.