自動追蹤並顯示日誌的來源(函數/類別)。
提供彩色且可讀的日誌以提高可見度。
提供一個乾淨簡單的 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中文網其他相關文章!