VS.Net 2008 中 Windows 服务中的控制台输出

发布于 2024-12-06 03:30:08 字数 361 浏览 0 评论 0原文

我正在使用 C# 使用 Windows 服务。我想要在控制台中输出 Console.WriteLine("Hello")。我无法得到它,而我能够成功地将其写入事件日志条目。

  eventLog1.WriteEntry("In OnStart");
        try
        {
            Console.WriteLine("Hello");         
            DBSyncHandler sync = new DBSyncHandler();
            sync.startSync();

        }

因此说我无法检查它是否正在写入控制台并执行下面提到的代码。

I am using Windows Service using C#.I want an output in Console say Console.WriteLine("Hello").I am not able to get that whereas I am able to successfully write it make an eventLog Entry.

  eventLog1.WriteEntry("In OnStart");
        try
        {
            Console.WriteLine("Hello");         
            DBSyncHandler sync = new DBSyncHandler();
            sync.startSync();

        }

Say therefore I am not able to check whether it is writing to Console and executing below mentioned code.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

著墨染雨君画夕 2024-12-13 03:30:09

为了在 Windows 服务中查看控制台输出,您需要使用“允许服务与桌面交互”来设置服务

Control Panel --> Admin Tools --> Services --> select yours --> (right-click) Properties --> Logon Tab --> Tick "Allow service to interact with Desktop"

In order to see Console output in a Windows Service, you need to set up your service with "Allow the service to interact with Desktop"

Control Panel --> Admin Tools --> Services --> select yours --> (right-click) Properties --> Logon Tab --> Tick "Allow service to interact with Desktop"
So要识趣 2024-12-13 03:30:08

您可能指的是 Debug.WriteLine 不是吗?如果是这样,请使用 sysinternals 调试查看器 来查看任何应用程序发送的每条调试消息(包括服务)

编辑:逐步

  1. Console.WriteLine替换为Debug.WriteLine
  2. 下载调试查看器
  3. 运行调试查看器并启动服务
  4. 调试查看器将显示发送到调试的每条消息。 (您可以过滤以仅查看您感兴趣的内容)
  5. 瞧!

You probably mean Debug.WriteLine don't you ? If so, use the sysinternals debug viewer to watch every debug message send by any application (including services)

edit : Step by step

  1. Replace the Console.WriteLine by Debug.WriteLine
  2. Download debug viewer
  3. Run debug viewer and start your service
  4. Debug Viewer will show you every message send to Debug. (you can filter to only see what's interresting for you)
  5. Voila !
夜吻♂芭芘 2024-12-13 03:30:08

Windows 服务中没有可用的控制台窗口;我将使用的选项是使用日志记录框架(例如 log4net)将语句输出到日志文件

You have no Console window available within a windows service; the option I would use would be to use a logging framework (such as log4net) to output the statements to a log file

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文