0

我已经在本地 laravel 3 应用程序中安装了 bundle fireAnbu,但我不知道如何使用它!(感觉很傻)

我有'fireanbu' => array('auto' => true),bundles.php 和'profiler' => true,fireanbu/config/fireanbu.php,我试过了:

  • fireanbu::log('something');
  • $fireanbu->log('something');
  • FirePHP::log('something');
  • $FirePHP->log('something');
  • FB::log('something');
  • $fb->log('something');

我在 fireanbu/start.php 中查看了线索,但我猜 :(

到目前为止,我得到的最好的线索是:

Non-static method FirePHP::log() should not be called statically, assuming $this from incompatible context

我查看了http://www.firephp.org/HQ/Use.htm,看起来 fireanbu 正在使用 OO API。

我做错了什么/我应该如何在我的控制器中调用它?

4

2 回答 2

1

我还为此创建了一个 Laravel 4 版本,如果有人发现这个线程正在寻找 L4 版本(就像我一样,并且没有找到我自己创建的): https ://packagist.org/packages/p3in/firephp

于 2014-04-16T10:36:57.410 回答
0

没有必要做任何事情。它会监听来自 Laravel 自己的 Log 类的事件并将其附加到 FirePHP。

Log::info('foo');会很好地工作的。

于 2013-06-07T14:21:13.290 回答