Windows服务已启动然后停止,但没有记录

时间:2016-05-12 07:39:50

标签: c# windows-services event-viewer

昨天,我在Windows 10中安装了可执行文件C:\Users\urban\Documents\Visual Studio 2013\Projects\TestService\obj\Release\TestService.exe作为服务,现在它显示在services.msc中。我然后启动它,错误消息就像

  

本地计算机上的“服务名称”服务已启动然后停止。如果某些服务未被其他服务或程序使用,则会自动停止。

今天,我回到VS并添加了EventLog并尝试捕获,以便我的代码现在看起来像这样:

internal class TestService : ServiceBase
{
    Thread Worker;
    AutoResetEvent StopRequest = new AutoResetEvent(false);
    Toolkit toolkit;

    protected override void OnStart(string[] args)
    {
        try {
            EventLog.Log = "Application";
            EventLog.Source = "TestService";
            EventLog.WriteEntry("Starting Test Service", EventLogEntryType.Information);
            var User = System.Security.Principal.WindowsPrincipal.Current;
            toolkit = new ServiceToolkit(User);
            Worker = new Thread(DoWork);
            Worker.Start();
        }
        catch (Exception e)
        {
            EventLog.WriteEntry(e.GetType().Name + ": " + e.Message, EventLogEntryType.Error);
            throw;
        }
    }

我编译了它并尝试从services.msc启动它。虽然错误消息仍然相同,但我希望该服务至少记录它已经启动以及抛出了哪个错误。但是纳达。在启动服务之前,我清除了事件查看器的“应用程序”协议,同时添加的少数日志不是来自我的服务。

这里发生了什么?

1 个答案:

答案 0 :(得分:1)

如果在服务安装时知道所有事件源,我建议您提前注册这些源,然后您就可以获得日志条目。 在这种情况下,您可以创建自己的简单记录器,它可以灵活地提供您指定的日志。

这是我使用我的服务的记录器

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;

    namespace TestWindowService
    {
        public static class MyLogger
        {
            public static void WriteErrorLog(Exception ex)
            {
                StreamWriter sw = null;
                try
                {
                    sw = new StreamWriter(AppDomain.CurrentDomain.BaseDirectory + "\\LogFile.txt", true);
                    sw.WriteLine(DateTime.Now.ToString() + ": " + ex.Source.ToString().Trim() + "; " + ex.Message.ToString().Trim());
                    sw.Flush();
                    sw.Close();
                }
                catch
                {
                }
            }

            public static void WriteErrorLog(string Message)
            {
                StreamWriter sw = null;
                try
                {
                    sw = new StreamWriter(AppDomain.CurrentDomain.BaseDirectory + "\\LogFile.txt", true);
                    sw.WriteLine(DateTime.Now.ToString() + ": " + Message);
                    sw.Flush();
                    sw.Close();
                }
                catch
                {
                }
            }
        }
    }

我只是用它

MyLogger.WriteErrorLog("Test window service started!");

只需在服务停止时编写即可。您可以识别错误/原因。