应用程序应将其日志存储在 Mac OS 中的何处?

发布于 2024-09-26 00:46:46 字数 218 浏览 3 评论 0原文

我正在使用 Java 和 Swing 将用 C# 编写的 Windows 应用程序移植到 Mac OS。

Windows 应用程序将日志(环境信息、异常等)存储在文件 C:\Program Files\MyProgram\Logs\app.log 中。有时我会要求用户向我发送此文件来诊断问题。

Mac OS 中日志的正确位置是什么?如果有多个可能的位置,我想使用用户更容易找到的那个。

I'm porting a Windows app written in C# to Mac OS using Java and Swing.

The Windows app stores the logs (environment info, exceptions, etc.) in the file C:\Program Files\MyProgram\Logs\app.log. Occasionally I ask users to send me this file to diagnose problems.

What is the right place for logs in Mac OS? If there are several possible places, I'd like to use the one that is easier for users to locate.

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

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

发布评论

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

评论(1

囍孤女 2024-10-03 00:46:46

通常我们将其存储在主文件夹中的目录[具有应用程序名称]和该.log文件中

System.getProperty("user.home")+System.getProperty("file.separator")+"appname"+System.getProperty("file.separator")+"appname.log"

generally we store it in a dir [with the name of app] in home folder and in that .log file

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