日志文件位置
我们正在为 WIN CE 设备开发一个 COM。它将被 ASP 页面使用。它将把执行信息记录到日志文件中。保存日志文件的理想位置是什么?
We are developing A COM for a WIN CE device. It will be used by ASP pages. It will log execution information to a log file. What is the ideal location for keeping our log files?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不存在“理想”的位置。将它们放在有空间并且可以再次找到它们的地方。也许您有持久存储并且想将其放在那里(例如
\Hard Disk
、\USB Disk
或\Storage Card
),也许您不希望它持久存在,并且您希望将其放入临时日志文件夹中,例如\Temp\Logs
。基本上这取决于您和您想要的设备架构。其他人没有办法告诉你他们应该去哪里。There is no "ideal" location. Keep them where you have space and where you can find them again. Maybe you have persistent storage and you want to put it there (e.g.
\Hard Disk
,\USB Disk
or\Storage Card
), maybe you don't want it persistent and you want to put it in a temp log folder like\Temp\Logs
. Basically it's up to you and your device architecture where you want them. There no way for anyone else to tell you where they should go.