chrome logger - 如何获得控制台输出

时间:2017-08-13 07:29:17

标签: php chromelogger

我安装了chrome扩展程序 - chrome logger。

下载并在我的php页面中加入totalPrice :: Product -> Integer -> Float totalPrice product count = case product of Ramen | x >= 200 -> 1.35*x | x > 100 -> 1.4*x | x > 30 -> 1.5*x | x > 10 -> 1.8*x | x >= 0 -> 2.0*x | otherwise -> 0 Chips | x >= 21 -> 2.35*x | x > 10 -> 2.5*x | x > 5 -> 2.7*x | x > 2 -> 2.95*x | x >= 0 -> 3.0*x | otherwise -> 0 where x = fromIntegral count

写:

ChromePhp.php

没什么好笑的 - 控制台是空的。

有什么不对或丢失?

2 个答案:

答案 0 :(得分:0)

ChromePhp::log('Hello console!');
ChromePhp::warn('warn console!');
检查后的

。(开发人员工具 - > 控制台)点按默认级别,选择默认。

答案 1 :(得分:0)

确保为网站启用了扩展名。

您需要点击Chrome右上角的扩展程序图标。它看起来像一个控制台/终端。如果为蓝色,则表示已启用。

enter image description here

如果它看起来像黑色,那么您将在控制台中看不到任何输出。

enter image description here