自动追踪并显示日志的来源(函数/类)。
提供彩色且可读的日志以提高可见性。
提供一个干净简单的 API 来记录多个参数。
import _ from "kruza"; class Boxer { punch() { _.log("Punch"); } } class Police { eatDonut() { _.log("Eating donut"); } } class UFC_Champ { koSomeone() { _.log("BAM!"); } } const b = new Boxer(); b.punch(); // Output: [Boxer.punch] Punch const p = new Police(); p.eatDonut(); // Output: [Police.eatDonut] Eating donut const ufc = new UFC_Champ(); ufc.koSomeone(); // Output: [UFC_Champ.koSomeone] BAM!
以上是\'npm kruza:具有源跟踪功能的记录器\”的详细内容。更多信息请关注PHP中文网其他相关文章!