将 MAMP 日志文件添加到 MaxOSX 控制台

发布于 2024-10-25 22:12:07 字数 70 浏览 0 评论 0原文

将 MAMP Apache、PHP 和 MySQL 错误日志添加到 MacOSX 控制台的命令是什么?

谢谢!

What are the commands for adding the MAMP Apache, PHP and MySQL error logs to the MacOSX Console?

Thanks!

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

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

发布评论

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

评论(3

空心空情空意 2024-11-01 22:12:07

与此问题类似...

控制台有一些标准位置,它将在其中查找日志文件并为其建立索引。您可以做的最简单的事情是将 MAMP 日志文件中的符号链接添加到控制台已使用的目录之一,例如 ~/Library/Logs。

例如,我的 MAMP 日志文件位于 /Applications/MAMP/logs 中。所以我做了:

cd ~/Library/Logs
ln -s /Applications/MAMP/logs/php_error.log .
ln -s /Applications/MAMP/logs/apache_access_log .

希望有帮助!

Similar to this question...

Console has a few standard locations where it will look for and index log files. The easiest thing you can do is add a symbolic link from the MAMP log files into one of the directories Console already uses, like ~/Library/Logs.

For example, my MAMP log files are located in /Applications/MAMP/logs. So I did:

cd ~/Library/Logs
ln -s /Applications/MAMP/logs/php_error.log .
ln -s /Applications/MAMP/logs/apache_access_log .

Hope that helps!

溺ぐ爱和你が 2024-11-01 22:12:07

你的意思是Console.app吗?如果是这样,请单击“文件/打开”。如果 MAMP 的日志位于标准“打开文件”对话框中未显示的位置,请使用 Cmd-Shift-G 打开一个文本字段,您可以在其中输入路径。

控制台应该记住日志文件,因此您下次运行它时只需单击左侧列表中的它们即可。

Do you mean Console.app? If so, click File/Open. If MAMP's logs are in a location that's not shown in the standard "open file" dialog, use Cmd-Shift-G to open a text field you can type the path into.

Console should remember the log files, so you can simply click them on the list at the left the next time you run it.

靑春怀旧 2024-11-01 22:12:07

看起来他们改变了控制台应用程序中的行为!过去,您只需向目录添加符号链接,内容就会显示在控制台中,但是:

在 El Capitan 上,控制台不会遵循指向充满日志文件的目录的符号链接,它显示目录,但不显示内容...所以我发现这样做非常有效:

cd ~/Library/Logs
mkdir MyNewLogsFolder
cd MyNewLogsFolder
ln -s /path/to/logs/folder/*.log .

这将在控制台的左侧快速访问栏中创建一个新条目,并用指向原始日志目录中日志文件的符号链接填充它。

它快速、简单,并且在所有版本的 OS X 上一致地工作。

It looks like they changed the behavior in the console app!! It used to be that you could just throw a symlink to a directory and the contents would show up in Console, but:

On El Capitan, Console doesn't follow symlinks to directories full of log files, it shows the directory but not the contents... so I have found it works really well to do this:

cd ~/Library/Logs
mkdir MyNewLogsFolder
cd MyNewLogsFolder
ln -s /path/to/logs/folder/*.log .

That will create a new entry in the left-side quick-access bar in Console and fill it with symlinks to the log files in your original logs directory.

It's quick and easy and works consistently across all versions of OS X.

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