VS.Net 2008 中 Windows 服务中的控制台输出
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
为了在 Windows 服务中查看控制台输出,您需要使用“允许服务与桌面交互”来设置服务
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"
您可能指的是
Debug.WriteLine
不是吗?如果是这样,请使用 sysinternals 调试查看器 来查看任何应用程序发送的每条调试消息(包括服务)编辑:逐步
Console.WriteLine
替换为Debug.WriteLine
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
Console.WriteLine
byDebug.WriteLine
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